@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
/* common-style */
@font-face {
    font-family:"Poppins-Light" ;
    src: url("../fonts/Poppins-Light.ttf");
}
@font-face {
    font-family:"Poppins-Regular" ;
    src: url("../fonts/Poppins-Regular.ttf");
}
@font-face {
    font-family:"Poppins-Medium" ;
    src: url("../fonts/Poppins-Medium.ttf");
}
@font-face {
    font-family:"Poppins-SemiBold" ;
    src: url("../fonts/Poppins-SemiBold.ttf");
}
@font-face {
    font-family:"Poppins-Bold" ;
    src: url("../fonts/Poppins-Bold.ttf");
}
@font-face {
    font-family:"Poppins-ExtraBold" ;
    src: url("../fonts/Poppins-ExtraBold.ttf");
}



body{
    margin: 0;
    padding: 0;
    font-size: 15px;
    line-height: 26px;
    color: #000;
    font-family:"Poppins-Light" ;
}
a{text-decoration: none;}
.main-sec{background: #d4ebf8;}
ul{list-style: none;padding: 0; margin: 0;}
.container-fluid{
    width: 100%;
    max-width: 1920px;
    margin: auto;
    padding-inline: 30px;
}
/* common-style-end */

/* header-sec */
header nav .logo-img{height: 45px;}
header nav.navbar.navbar-expand-lg.bg-body-tertiary {background-color: transparent !important;padding-block: 20px;}
.language-link img{max-height: 25px;}
header nav.navbar ul li a.nav-link img {height: 18px;}
header nav.navbar ul li a.nav-link {
    font-size: 16px;
    text-transform: uppercase;
    font-family: "Poppins-Medium";
    padding-inline: 23px !important;
    padding-block: 9.5px;
    letter-spacing: .25px;
    color: #000;
  }
  header nav.navbar .language-link a span {
    color: #000;
  }
  header .language-link {
    width: 20%;
    text-align: end;
  }
  header .language-link a {
    /* background-color: #c2e6fb;
    display: inline-flex;
    padding: 6px;
    gap: 7px;
    border-radius: 170px;
    border: 1px solid #0a3981;
    padding-right: 20px;
    align-items: center; */
    font-family: "Poppins-Medium"; 
    padding-block: 0;
    height: 37px;   
    color: #191e21;
  }
  .navbar-nav {
    background-color: #f6fbfe;
    border-radius: 200px;
    padding-inline: 38.65px;
    /* padding-inline: 35px; */
  }
  header nav.navbar #navbarSupportedContent {
    margin-left: 10px;
    /* margin-left: 24px; */
  }
  header nav.navbar ul li a.nav-link.active {
    color: #0141a0 !important;
  }
  .navbar-brand {
    padding: 0;
  }
/* header-sec-close */
/* banner-sec */
.banner-sec {
  padding-bottom: 30px;
}
.banner-sec .banner-container{
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.banner-sec .banner-container .banner-middle{
  width: 100%;
  max-width: 1070px;
  margin-left: 5px;
}
.banner-sec .banner-container .banner-left-side, .banner-sec .banner-container .banner-right-side{
  width: 100%;
  max-width: 20%;
}

.banner-sec .banner-container .banner-left-side{
  text-align: center !important;
}
.banner-left-inner{
  height: 100%;
  display: inline-flex;
  flex-direction: column;
  padding-top: 73px;
}
h5.title-name{
  font-size: 20px;
  font-family:"Poppins-SemiBold" ;
  color: #0a3981;
  line-height: 26px;
  letter-spacing: .25px;
  margin-bottom: 15px;
}
h5.title-name span{
  display: block;
}
img.ms-left-img {
  height: 100%;
  width: 100%;
  max-width: 242px;
  max-height: 242px;
  margin-inline: auto;
  margin-bottom: 15px;
}
.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.social-media.ss {
  margin-top: 25px;
  margin-bottom: 15px;
}
.link-set{
  font-size: 16px;
  color: #010101;
}
.midea-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.midea-links a span {
  height: 55px;
  width: 55px;
  border-radius: 40px;
  display: block;
}
.midea-links a span img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.midea-links a:nth-child(1) span{
  padding: 12px;
  background: #5d5d5d;
}
.midea-links a:nth-child(3) span{
  padding: 15px;
  background: #111;
}

.banner-right-inner{
  height: 100%;
  position: relative;
  background-image: linear-gradient( #fff 50%, #b0cffc);
  border-radius: 20px;
  padding: 20px 25px;
  text-align: justify;
  z-index: 0;
  overflow: hidden;
}
.banner-right-inner::before{
  position: absolute;
  content: "";
  background-image: url("../images/about-banner.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 90%;
  width: 100%;
  height: 100%;
  bottom: -30px;
  left: -50px;
  z-index: -1;
}
.banner-right-inner p {
  font-size: 18px;
}

a.btnn{
  background-color: #0a3981;
  color: #fff;
  font-size: 14px;
  padding: 16px 85px;
  border-radius: 60px;
  display: inline-block ;
  text-transform: uppercase;
  font-family: "Poppins-Medium";
  letter-spacing: 0.5px;
}
.banner-right-inner a.btnn{
  font-size: 11px;
  padding: 0px 11px;
  background-color: #1f509a;
  font-family:"Poppins-Light" ;
  text-transform: capitalize;
  letter-spacing: 0;
  display: inline-block !important;
}
/* banner-sec-close */

 /* initiatives projects section start  */
 .owl-carousel .owl-item .initiatives-img img {height: 35px;width: auto;}
.initiatives-projects-bg {
  background: #d4ebf8;
}
.initiatives-inner{
  background-color: #fff;
  border-radius: 15px;
}
.mt-150 {
  margin-top: 150px !important;
}
.service-card {
  padding: 20px 10px 20px 30px;
  -webkit-border-start: 1px solid #ccc;
  border-inline-start: 1px solid #ccc;
  display: block;
}
.service-card .icon {
  color: var(--color-orange1);
  margin-bottom: 5px;
  font-size: 30px;
}
.service-card .img {
  height: 160px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  border: solid 2px #9fb7c5;
  padding: 5px;
}
.service-card .img img{
  border-radius: 10px;
}
.service-card .img-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: inherit;
}



/* .service-card .arrow {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  margin-top: 20px;
  border: 1px solid #ccc;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
} */
 /* initiatives projects section end  */



/* footer css  */

.footer__bg{
  background-color: #ffffff;
}
.footer__shope{
  position: relative;
  text-align: center;
  z-index: 0;
  padding-top: 30px;
}
.footer__shope::before{
  position: absolute;
  content: '';
  width: 560px;
  height: 560px;
  top: 0;
  left: 50%;
  border-radius: 50%;
  background-image: linear-gradient(to top, rgba(255, 255, 255, 0) 50%, #D4EBF8 100%);
  transform: translateX(-50%);
  z-index: -1;
}
.sec__title{
  font-size: 40px; 
  font-family: "Poppins-Medium"; 
  line-height: 32px;
  letter-spacing: 0.1px;
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 15px;
  display: inline-block;
}
.sec__title::after{
  position: absolute;
  content: '';
  background-image: url("../images/title-icon.png");
  bottom: 0;
  left: 0;
  height: 22px;
  width: 170px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__shope .footer__title__icon {
  position: relative;
  left: 51.8%;
  margin-bottom: 20px;
  display: block;
  transform: translateX(-50%);
}
.footer__shope .title__icon {
  position: relative;
  right: 118px;
}
.para__txt {
  font-family: "Poppins-Regular";
  font-size: 18px;
  line-height: 30px;
}
.para__txt span{
font-family: "Poppins-Medium";
}
/* .footer__shadow{
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
} */
.contact-block {
  padding: 20px 60px 60px 60px;
  border-radius: 15px;
}
.common-form input, .common-form select, .common-form textarea {
  font-size: 15px;
  font-family: "Poppins-Regular";
  line-height: 26px;
  border-radius: 0px !important;
  background-color: transaparent;
  color: #000;
  border: 0;
  padding: 0px;
  border-bottom: 1px solid #D1D1D2;
  outline: none;
}

.footer__bg .contact-block .common-form input::placeholder{
  font-size: 17px;
  line-height: 24px;
  font-family: "Poppins-Regular";
  color: #76909f;
  
}
.footer__bg .contact-block .common-form textarea::placeholder{
  font-size: 17px;
  line-height: 26px;
  font-family: "Poppins-Regular";
  color: #76909f;
  
}
.footer__bg .contact-block .common-form .form-label{
  font-size: 15px;
  line-height: 26px;
  font-family: "Poppins-Regular";
  color: #0d0e0f;
}
.input-imp {
  color: #ff3737;
  position: relative;
  top: 2px;
}
.btn-style {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-family: "Poppins-Regular";
  display: inline-block;
  border-radius: 50px;
  text-transform: uppercase;
  padding: 13px 20px 13px 20px;
  border: 1px solid #0a3981;
  background-color: #0a3981;
  margin-top: 40px;
  height: 50px;
  width: 215px;
}
.btn-style i{line-height: 100%;}
.container2{max-width: 1230px;}
.form-field {margin-bottom: 30px;}
.form-field2 {margin-top: 30px;}
.common-sec{padding-block: 80px;}
.news-updates.common-sec {padding-block: 80px;}
.blog-bg{background-image: linear-gradient(to bottom, #eef7fd 50%, #e0f1fb 100%);}
.blog-main {border: 1px solid #9fb7c5;border-radius: 18px;overflow: hidden;background-color:#eef7fd}
.blog-main img {
  padding: 6px;
  object-fit: cover;
  width: 100%;
  mix-blend-mode: darken;
}
.blog-img{
  height: 295px;
  border-radius: 25px;
  object-fit: cover !important;
  /* background-color: #ccc; */
  /* margin: 10px !important; */
}
.owl-carousel.owl-theme.owl-loaded.owl-drag{position: relative;}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-prev span, .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-next span{
  background: #fff;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-prev span.ss, .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-next span.ss {
  background: #e9f5fc;
}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-prev, .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-next{
  background-image: linear-gradient(#ff922a, #63b43b);
  width: 35px;
  height: 35px;
  border-radius: 50px;

}
.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-next{
position: absolute;
content: '';
top: 50%;
right: -50px;
}

.owl-carousel.owl-theme.owl-loaded.owl-drag .owl-prev{
  position: absolute;
  content: '';
  top: 50%;
  left: -50px;
}
/* .carousel-control-next-icon::before, .carousel-control-prev-icon::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 0;
  top: 0;
  background: red;
} */
.carousel-control-next-icon, .carousel-control-prev-icon {
  background-size: 16px;
  padding: 15px !important;
  position: relative;
}

/* photo gallery  */

.main .gallery-card {
  color: #252a32;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
}
.main .card-image {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 70%;
  background: #fff;
}
.main .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-section {
  display: grid;
  width: 100%;
  grid-template-columns: 20% 1fr 20%;
  grid-gap: 25px;
}
.grid-right, .grid-left{margin-block: auto;}
.card-image img {width: 100%;}
.card-image {border: 1px solid #9fb7c5; padding: 7px; border-radius: 15px;}

.initiatives-img {
  height: 50px;
  width: 50px;
}
.service-card .arrow i{
 font-size: 25px;
 color: #000000;
}
.initiatives-title {
  font-size: 26px;
  color: #090909;
  /* font-family: 'Poppins-SemiBold'; */
  font-family:"Poppins-Medium" ;
  line-height: 32px;
}
.initiatives-description {
  font-size: 15px;
  color: #000000;
  font-family: 'Poppins-light';
  line-height: 26px;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
.social-media-container{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 23px;
  margin-block: 25px;
}
.social-media span{
  height: 54px;
  width: 54px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.social-media i{
  font-size: 20px;
  color: #fff;
 text-align: center;

}
.social-media-bg-1{background-image: url(../images/social-meadia-1.png);}
.social-media-bg-2{background-image: url(../images/social-meadia-2.png);}
.social-media-bg-3{background-image: url(../images/social-meadia-3.png);}
.social-media-bg-4{background-image: url(../images/social-meadia-4.png);}
.social-media-bg-5{background-image: url(../images/social-meadia-5.png);}
.container-bottom-section{
  width: 100%;
  max-width: 1840px;
  border-radius: 60px;
  background-color:#1f509a;
}
.container-bottom-content{
  display:flex;
  justify-content: space-around;
  align-items: center;
  padding-block: 20px;
}
.container-bottom-content span{
  font-size: 15px;
  line-height: 30px;
  color: #ffffff;
}
.blog-content{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0px;
}
.blog-date {
  display: flex;
  flex-direction: column;
  border: solid 2px #c5d8e2;
  padding: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
}
.blog-date-number{
  font-size:22px;
  line-height: 24px;
  font-family: "Poppins-Medium";
  color: #090909;
}
.blog-description {
  font-size: 13px;
  line-height: 20px;
  font-family: 'Poppins-Regular';
}
.blog-date-month{
  font-size: 10px;
  line-height: 100%;
  font-family: "Poppins-Regular";
  color: #090909;
  text-transform: uppercase;
}
.common-form-btn.btn-size.btn-style.cmn-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-inline: auto;
}
.btn-style i{font-size: 24px;position: relative;top: 0px;}
.contact-block {position: relative;z-index: 1;}
.footer__bg .contact-block .common-form input:focus, .footer__bg .contact-block .common-form textarea:focus {box-shadow: none;}
.owl-theme .owl-nav [class*="owl-"]:hover {
  color: #111;
}

/* news-articles-section */
.news-updates{background-color: #d4ebf8;padding-block:30px; position: relative;position: relative;z-index: 0;}
/* .news-updates::before{
  position: absolute;
  content: "";
  background-image: url("../images/news-updates-image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 650px;
  height: 620px;
  left: 0;
  bottom: -30px;
  z-index: -1;
} */
.news-updates .news-updates-container{display: flex;justify-content: space-between;gap: 15px;position: relative;}
.news-updates .news-updates-container::before {
  position: absolute;
  content: "";
  background-image: url("../images/news-updates-image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 35%;
  height: 100%;
  left: -30px;
  bottom: -140px;
  z-index: -1;
}
/* .news-updates .news-updates-container .news-left-box{width:100%;max-width:640px;} */
.news-updates .news-updates-container .news-middle{width:100%;max-width:860px;margin-left: auto;}
.news-updates .news-updates-container .news-right-box{width:100%;max-width:20%;}
.right-partition{display:flex;flex-direction:column;gap:15px;}
.articles{background:#ffffff;border-radius: 25px;padding:15px 24px;padding-bottom: 40px;}
.article-container{display:flex;flex-direction:column;padding-bottom:10px;}
.news-updates-title{
  font-size: 20px;
  line-height: 40px;
  color: #000000;
  font-family: "Poppins-SemiBold";
  text-align:center;
  margin-bottom:0px;
}
.article-container img{
  height: 135px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;}
 .carousel-control-prev{position:absolute;left:40%;top:100%;opacity: 1;transform: translateX(-50%);}
 .carousel-control-next{position:absolute;right:30%;top:100%;opacity: 1;transform: translateX(-50%);}
 .carousel-control-next-icon, .carousel-control-prev-icon {
  background-color: #d6d8e8;
  width:30px;
  height:30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color:#000;
    font-size:12px;
    background-image:none;
}
.article-title{
  font-size: 15px;
  line-height: 30px;
  color: #000000;
  font-family: "Poppins-Medium";
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
}
.blog-box .blog-description {
  font-size: 13px;
  line-height: 20px;
  font-family: 'Poppins-Regular';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
.article-text{
  font-size: 14px;
  line-height: 100%;
}
.article-text a{

  color: #f84438;
  font-family: "Poppins-Regular";
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;

}
.awards{
  border-radius: 25px;background-image: linear-gradient(0deg, #4877be 0%, #1f5099 100%);padding:20px 15px;padding-bottom: 45px;}
.awards-title{
  font-size: 20px;
  line-height: 32px;
  color: #ffffff;
  font-family: "Poppins-SemiBold";
  text-align: center;
  position:relative;
  margin-bottom:15px;
}
.awards-title::before{
  position:absolute;
  content:"";
  left:39%;
  width:22%;
  height:2px;
  background-color:White;
  bottom:-14%;
}
.awards-containr{
  border: 1px solid rgba(255,255,255,0.5);
  border-radius:23px;
  padding:10px;
  margin-bottom:30px;
}
.awards-subtitle{
  font-size:15px;
  line-height:28px;
  color:#ffffff;
  margin-bottom:5px;
  font-family:"Poppins-Medium";
  text-align:center;
}
.awards-text{
  font-size: 13px;
  letter-spacing: 0px;
  line-height: 20px;
  color: #ffffff;
  font-weight: 300;
  font-family: "Poppins-Light";
  text-align: center;
}
.explore-btn{
  font-size:13px;
  font-family:"Poppins-Light";
  border-radius: 17px;
  background-color: #ffffff;
  text-decoration:none;
  color:#1f509a;
  padding:8px 24px;
}
.awards-explore{margin-bottom:-26px;}
.awards-carousel .carousel-control-prev{position:absolute;left:40%;top:100%;transform: translateX(-50%);}
.awards-carousel .carousel-control-next{position:absolute;right:30%;top:100%;transform: translateX(-50%);}
.awards-carousel .carousel-control-next-icon, .awards-carousel .carousel-control-prev-icon {
  width: 30px;
  height: 30px;
  border: 1px solid white;
  border-radius: 50px;
  padding-top:15px;
  background-image:none;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  font-size:12px;
  }
  .awards-carousel .carousel-control-prev .carousel-control-prev-icon, 
  .awards-carousel .carousel-control-next .carousel-control-next-icon {
    background: transparent;
    color: #fff;
  }
.news-updates-detail{border-radius: 25px;background-color: #1f509a;padding:30px;}
.news-updates-inner-title{font-size:40px;line-height:48px;color: #ffffff;font-family:"Poppins-SemiBold";}
.news-updates-detail .sec__title {margin-bottom: 30px;}
.pos-relative{position:relative;}

.news-box{
  border-top: 1px solid #2f62b0;
  display: flex;
  gap: 10px;
  padding-block: 23px;
  align-items: center;
  justify-content: start;
}
.news-box div:last-child{
  margin-left: auto;
}
.news-box > div:first-child{display:flex;justify-content:center;align-items:center;}
.news-box > div:nth-child(3){display:flex;justify-content:center;align-items:center;}
.hash-box{
  background:#3166b7;
  border-radius:50%;
  width:35px;
  height:35px;
  display:flex;
  align-items:center;
  justify-content:center;
  color: #ffffff;
}
.news-inner-subtitle{font-size: 14px;line-height: 22px;font-family:"Poppins-Medium";color:#ffffff;padding-right: 60px;}
.news-read{background:#2b5eab;}
.news-read{
  font-size: 11px;
  line-height: 20px;
  font-family: "Poppins-Light";
  color: #ffffff !important;
  text-decoration: none;
  width: 115px;
  display: inline-flex;
  justify-content: center;
  border-radius: 50px;
  padding: 5px 5px;
}
.title-gap{margin-bottom:40px;}
.photo-gallery-bg {
  position: relative;
  z-index: 0;
  background: #fff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
/* news-articles-section close */

.header #navbar {
  width: 58%;
  margin-left: 10px;
}
.nav-header {
  position: relative;
  max-width: 20%;
  width: 100%;
}
.header .navbar ul {
  background-color: #f6fbfe;
  border-radius: 200px;
  padding-inline: 0;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 100%;
  justify-content: center;
}
.header #navbar ul li{padding: 0;}
.header #navbar ul li a {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Poppins-Medium";
  padding-inline: 23px !important;
  /* padding-block: 9.5px; */
  letter-spacing: .25px;
  color: #000;
  height: 37px;
}
.aws-app-menu{display: none;}
.banner-left-side {padding-right: 20px;}


/* inner page css */
.journy-acd-sec {max-width: 1030px;margin: auto;}
.banner-sec.inner-secs .banner-right-side {max-width: 100% !important;}
.banner-sec.inner-secs .banner-right-inner::before {
  background-position: bottom;
  background-size: contain;
  max-width: 55%;
  height: 500px;
}
h2.inner-banner-title {
  font-family: "Poppins-Bold";
  font-size: 50px;
  line-height: 54px;
  color: #0a3981;
}
h2.inner-banner-title span {
  color: #3371d0;
  display: block;
}
.banner-sec.inner-secs .banner-right-inner {
  padding: 100px 80px;
}
.banner-sec.inner-secs  .conetnt {
  width: 60%;
  margin-left: auto;
}

.journy-acd-sec .accordion-button:not(.collapsed){background: transparent;}
.journy-acd-sec .accordion-button:focus {box-shadow: none;}
.journy-acd-sec .accordion-button span.title_name{
  color: #0a3981;
  font-size: 20px;
  font-family:"Poppins-Medium" ;
}
.journy-acd-sec .accordion-button span img {
  height: 30px;
}
.journy-acd-sec .accordion-button span:first-child {
  border-right: 1px solid #cfdde5;
  padding-block: 18px;
  margin-right: 15px;
  width: 55px;
}
.journy-acd-sec .accordion-item {
  border-color: #cfdde5;
}
.journy-acd-sec .accordion-button {
  padding-block: 0;
}
.accordion-item:first-of-type, .accordion-item:first-of-type .accordion-button, 
.accordion-item:last-of-type, .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0 !important;
}
.accordion-item {
  margin-bottom: 25px;
  border-top: var(--bs-accordion-border-width) solid #cfdde5 !important;
}
.accordion-header {
  border-bottom: 1px solid #cfdde5;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.acd-inner-cont .acd-inner-img img{
  height: 75px;
}
.acd-inner-cont:nth-child(odd){
  border-right: 1px solid #cfdde5;
}
.acd-inner-cont{
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  min-width: 48%;
}
.acd-inner-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}
.acd-inner-text h5 {
  font-size: 18px;
  line-height: 32px;
  font-family:"Poppins-Medium" ;
  letter-spacing: .25px;
  margin-bottom: 0;
}
.acd-inner-text p span {
  font-family:"Poppins-Medium" ;
  display: block;
}
.acd-inner-text p {
  font-size: 16px;
}

.award-main{
  max-width: 1230px;
  margin: auto;
}
.award-card {
  background: #fff;
  padding: 10px;
  border-radius: 20px;
  height: 100%;
}
.award-card .award-img {
  border-radius: 10px;
  background: #ddd;
}
.award-card .award-img img {
  width: 100%;
  border-radius: 10px;
  mix-blend-mode: multiply;
  height: 210px;
  object-fit: cover;
  object-position: top;
}
.award-text {
  font-size: 18px;
  text-align: center;
  font-family:"Poppins-Medium" ;
  padding-inline: 10px;
  padding-top: 20px;
}
.menu-close-btn-set{display: none;}
/*  */
.inner-banner-right-text {
  height: 100%;
  background-image: linear-gradient(#1f509a, #86a8db);
  border-radius: 20px;
  margin-left: 5px;
  padding: 8px;
}
.right-banner img {
  width: 100%;
  border-radius: 10px;
  max-height: 385px;
  object-fit: cover;
  object-position: center;
}
.banner-left-content{
  padding-left: 30px;
}
.banr-small-title{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.banr-logo img{
  height: 37px;
}
.banr-small-title h5{
  font-family:"Poppins-Regular" ;
  font-size: 16px;
  color: #fff;
  letter-spacing: .10px;
  line-height: 100%;
  margin-bottom: 0;
  padding-top: 5px;
}
.banr-small-title p a.site-link{
  font-family:"Poppins-Light" ;
  color: #ffea00;
  letter-spacing: .25px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 100%;
}
.blog-banr-title{
  font-size: 36px;
  font-family:"Poppins-SemiBold" ;
  letter-spacing: .25px;
  line-height: 44px;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0px 1px 3px #676565;
}
.banner-left-content > p{
  font-size: 13px;
  line-height: 22px;
  color: #fff;
  text-shadow: 0px 1px 3px #676565;
}
.bnr-btn {padding-top: 15px;}
.bnr-btn a{
  text-transform: uppercase;
  font-family:"Poppins-Light" ;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  background-color: #537cbb;
  padding: 10px 35px;
  border-radius: 30px;
}
.inner-banner-right-text .row,
.inner-banner-right-text .row .col-lg-6:last-child,
.inner-banner-right-text .row .col-lg-6 .right-banner,
.inner-banner-right-text .row .col-lg-6 .right-banner img{height: 100%;}
/*  */
.blog-detail-banr img {
  width: 100%;
  border-radius: 15px;
  max-height: 450px;
  object-fit: cover;
}
.blog-detail-banr {
  position: relative;
  border-bottom-left-radius: 20px;
  overflow: hidden;
  border-bottom-right-radius: 20px;
}
.flex-blog {
  position: absolute;
  bottom: 0;
  display: flex;
  padding: 39px;
  align-items: end;
  justify-content: space-between;
  background-image: linear-gradient(#fff0, #111111bf);
  gap: 30px;
  width: 100%;
}

.blog_title44{
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  background-color: #1f509a;
  display: inline-block;
  padding: 0px 15px;
  font-family: "Poppins-Medium";
  border-radius: 30px;
  margin-bottom: 10px;
}
.blog-detail-banr-inner h2 {
  font-size: 34px;
  color: #fff;  
  font-family:"Poppins-Bold" ;
  letter-spacing: 0.5px;
}
.blog-detail-banr-inner {
  padding-right: 60px;
}
.blog-detail-banr-inner p{
  font-size: 14px;
  color: #fff;  
  line-height: 22px;
  letter-spacing: 0.10px;
}
.blog-dtls-timig-set {
  color: #fff;
  display: inline-block;
  min-width: 290px;
  text-align: center;
  border: 1px solid #979599;
  border-radius: 40px;
  padding: 5px;
  font-size: 13px;
}
.journy-acd-sec.ss{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.inner-pages-left-side p {
  font-size: 14px;
}
.journy-acd-sec .inner-pages-left-side{
  padding-right: 25px;

}
.journy-acd-sec .inner-pages-right-side{
  min-width: 30%;
  padding-left: 25px;
  border-left: 1px solid #ddd;
}
.blog-title2{
  font-size: 20px;
  font-family: "Poppins-Medium";
  margin-bottom: 15px;
}
.categorie-box {
  background-color: #e7f5fd;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  padding: 7px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-family: "Poppins-Regular";
}

.Posts_box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.post_inner {
  line-height: 100%;
}
.Posts_box .blog_title44 {
  font-size: 10px;
  padding: 5px 10px;
  line-height: 100%;
  margin-bottom: 7px;
}
.Posts_box .post_inner_title {
  font-size: 13px;
  font-family: "Poppins-Regular";
  line-height: 16px;
  margin-bottom: 5px;
}
.Posts_box p{
  font-size: 12px;
  margin-bottom: 0;
}
.Posts_box > img {
  height: 80px;
  border-radius: 5px;
}






































/* nav bar */

/*----- navbar toggler  css -----*/

.navbar-toggler.x {
  border: none;
}

.navbar-toggler.x:focus {
  outline: none;
}

.navbar-toggler.x[aria-expanded="true"] .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 10% 10%;
  -ms-transform-origin: 10% 10%;
  transform-origin: 10% 10%;
}

.navbar-toggler.x[aria-expanded="true"] .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler.x[aria-expanded="true"] .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 10% 90%;
  -ms-transform-origin: 10% 90%;
  transform-origin: 10% 90%;
}

.navbar-toggler.x .icon-bar {
  width: 22px;
  display: block;
  height: 2px;
  background-color: #000;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.navbar-toggler.x .icon-bar + .icon-bar {
  margin-top: 4px;
}

.navbar-toggler.x .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.navbar-toggler.x .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}

.navbar-toggler.x .icon-bar:nth-of-type(3) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}


/* ------------------------------------------------------------------------------------------------------------*/
/* HEADER CSS */
/* ------------------------------------------------------------------------------------------------------------*/

.nav-menu > li > a:hover {
  color: #f38a18;
}

.nav-menu li {
  position: relative;
}
.nav-menu .menu-active a,
.nav-menu li:hover a {
  color: #f38a18;
}
.nav-menu .menu-active:before {
  content: "";
  border-bottom: 3px solid #f38a18;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 50px;
}
.nav-header {
  position: relative;
  max-width: 20%;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1024px) {
  /* .navbar ul li.menu-item-has-children>a{display: inline-block !important;width: auto;}
  .navbar ul li.menu-item-has-children>span{display: inline-block;width: 10px;} */
  .navbar {
    padding: 0;
  }
  
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 8px 0 8px 28px;
  }

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    /* text-transform: uppercase; */
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    font-size: 14px;
    color: #010101;
    /* padding: 30px 15px; */
    font-family: "Poppins-Regular";
    text-transform: capitalize;
    transition: color 0.3s, background 0.3s;
}

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    /* width: 20px;
    height: 20px; */
    position: relative;
    z-index: 20;
  }

  .navbar a:hover,
  .navbar li.menu-active>a,
  .navbar li:hover  a {
    color: #008044;
  }

  .navbar .menu-item-has-children ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    /* padding: 10px 0; */
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .menu-item-has-children ul li {
    min-width: 15rem;
  }

  .navbar .menu-item-has-children ul a {
	font-size: 14px;
	padding:10px 20px;
	color: #000;
	text-transform: none;
  }

  .navbar .menu-item-has-children ul a i {
    font-size: 12px;
  }

  .navbar .menu-item-has-children ul a:hover,
  .navbar .menu-item-has-children ul .active:hover,
  .navbar .menu-item-has-children ul li:hover > a {
    background-color:#008044;
	color:#fff;
  }

  .navbar .menu-item-has-children:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .menu-item-has-children .menu-item-has-children ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .menu-item-has-children .menu-item-has-children:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}
/* 
@media (min-width: 1024px) and (max-width: 1366px) {
  .navbar .menu-item-has-children .menu-item-has-children ul {
    left: -90%;
  }

  .navbar .menu-item-has-children .menu-item-has-children:hover > ul {
    left: -100%;
  }
} */

@media (min-width: 1024px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1024px) {
  /* .navbar ul li.menu-item-has-children>a{display: inline-block !important;width: 90%;}
  .navbar ul li.menu-item-has-children>span{display: inline-block;width: 10%;color: rgba(255, 255, 255, 0.7);} */
  .navbar ul li.menu-item-has-children>a i{
    position: absolute;
    right: 20px;
    width: 10%;
    height: 42px;
    text-align: center;
    top: 0px;
  }
	
  .menu-close-btn-set{display: block;}
  .navbar ul li.menu-item-has-children>a i::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    position: absolute;
  }
  .navbar ul li.menu-item-has-children>a{position: relative;}
  .navbar {
    position: fixed;
    top: 100%;
    right: 0;
    width: 100%;
    max-width: 95%;
    bottom: 0px;
    transition: 0.3s;
    z-index: 9997;
    margin-inline: auto !important;
    border-top-left-radius: 10px;
    overflow-x: hidden;
    border-top-right-radius: 10px;
    overflow-y: auto;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding:40px 0 10px 0;
    margin: 0;
    background:#109f5a;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding:8px 20px;
    color:#fff;
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
	font-size:14px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .menu-item-has-children ul,
  .navbar .menu-item-has-children .menu-item-has-children ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #8f8f8f;
    background: #008044;
  }
  .dropdown-active a{
    font-size: 12px !important;
    padding: 6px 15px;
  }

  .navbar .menu-item-has-children > .dropdown-active,
  .navbar
    .menu-item-has-children
    .menu-item-has-children
    > .dropdown-active {
    display: block;
  }

  /* .navbar .dropdown>.dropdown-active, .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
} */
  .mobile-nav-show {
    position: relative;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #111;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    left: 87%;
    top: 12%;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    left: 0;
    top: 10%;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }

  /* new responsive menu  */
  .aws-app-menu {
    padding: 7px 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
    z-index: 100;
    background: #000;
  }
  .aws-app-menu > div * {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    color: #fff;
    line-height: 11px;
    text-transform: uppercase;
  }
  .aws-app-menu > div{
    justify-content: space-between;
  }
  .aws-app-menu > div i {
    font-size: 20px;
  }
  
  .aws-app-menu{display: block;}
  .copy_right_sec{padding-bottom: 80px;}
  /* new responsive menu close */
}
.header-nav {
  position: relative;
  padding-block: 15px;
  display: flex;
  justify-content: space-between;
}
.header-nav .nav-header img.logo {
  position: absolute;
  left: 0;
  width: 100%;
  padding-right: 10px;
}

/* responsive */
@media screen and (max-width:1900px) {
  /* .news-updates::before {width: 25%;height: 60%;} */
}
@media screen and (max-width:1750px) {
  .banner-left-inner {padding-top: 50px;}
  .banner-right-inner::before {background-size: 90%;left: -40px;bottom: 0;}
  .header .navbar ul {padding-inline: 25px;}
  .header #navbar ul li a {padding-inline: 17px !important;}
}
@media screen and (max-width:1650px) {
  .navbar-nav {padding-inline: 20px;}
  header nav.navbar ul li a.nav-link {padding-inline: 20px !important;font-size: 14px;}
  header nav.navbar ul li a.nav-link img {height: 14px;}
  img.ms-left-img {max-width: 200px;max-height: 200px;}
  .banner-right-inner p {font-size: 16px;}
  .social-media span {height: 40px;width: 40px;}
  a.btnn {padding: 10px;display: block;}
  .banner-right-inner p {font-size: 14px;line-height: 22px;}
  h5.title-name {font-size: 16px;line-height: 22px;margin-bottom: 5px;}
  /* .news-updates::before {display: none;} */
  .news-updates .news-updates-container .news-middle {max-width: 47%;}
  .sec__title {font-size: 36px;}
  .news-left-box {display: none;}
  .header #navbar ul li a {padding-inline: 15px !important;font-size: 14px;}
  .header #navbar ul li a span img {height: 16px;}
  .social-media i {font-size: 16px;}
}
@media screen and (max-width:1500px) {
  .banner-left-inner {padding-top: 50px;}
  img.ms-left-img {max-width: 150px;max-height: 150px;}
  .link-set {font-size: 16px;}
  .social-media.ss {margin-top: 20px;margin-bottom: 10px;}
  .banner-right-inner a.btnn{font-family: "Poppins-Light";display: inline-block;}
  .common-sec {padding-block: 80px;}
  .grid-section {grid-template-columns: 300px 1fr 300px;grid-gap: 20px;}
  header nav.navbar ul li a.nav-link {padding-inline: 15px !important;padding-block: 8px;}
  header nav .logo-img {height: 40px;}
  header nav.navbar #navbarSupportedContent {margin-left: 40px;}
  .banner-sec .banner-container .banner-middle .carousel-item img {object-fit: cover;width: 100%;border-radius: 15px;}
  .container{max-width: 1080px;}
  .blog-detail-banr-inner {padding-right: 0;}
}
@media screen and (max-width:1465px) {
  /* .banner-sec .banner-container .banner-left-side, .banner-sec .banner-container .banner-right-side {max-width: 320px;} */
  .initiatives-img img {height: 40px;object-fit: contain;}
  header nav .logo-img {height: 37px;}
  header nav.navbar ul li a.nav-link {padding-block: 6px;font-size: 13px;}
  header nav.navbar .language-link a {padding-block: 4px;}
  header nav.navbar #navbarSupportedContent {margin-left: 25px;}
  /* .header-nav .nav-header img.logo {height: 37px;} */
  /* .header #navbar {padding-left: 335px;} */
  .header #navbar ul li a {padding-block: 6px;}
  .articles {padding: 15px;padding-bottom: 40px;}
  .news-updates-title {font-size: 18px;line-height: 25px;margin-bottom: 5px;}
  .awards-title {font-size: 18px;}
  /* .awards-carousel .carousel-control-prev {left: 85px;}
  .awards-carousel .carousel-control-next {right: 85px;} */
  .news-box {padding-block: 22px;}
  .news-updates .news-updates-container .news-right-box {max-width: 23%;}
}
@media screen and (max-width:1400px) {
  header nav.navbar ul li a.nav-link {padding-inline: 12px !important;padding-block: 7px;font-size: 13px;}
  header nav.navbar #navbarSupportedContent {margin-left: 25px;}
  /* .banner-sec .banner-container .banner-left-side, .banner-sec .banner-container .banner-right-side {max-width: 300px;} */
  .banner-sec .banner-container .banner-middle .carousel-item img {object-fit: cover;object-position: left;}
  .blog-detail-banr-inner h2 br{display: none !important;}
}
@media screen and (max-width:1350px) {
  body {font-size: 14px;line-height: 23px;}
  .social-media i {font-size: 16px;}
  .social-media span {height: 40px;width: 40px;}
  img.ms-left-img {margin-bottom: 10px;}
  h5.title-name {font-size: 15px;line-height: 21px;margin-bottom: 10px;}
  .social-media.ss {margin-top: 10px;margin-bottom: 15px;}
  /* a.btnn {padding: 10px 55px;} */
  .blog-description {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .blog-content {gap: 15px;padding: 15px 0px;}
  .blog-date-number {font-size: 20px;line-height: 24px;}
  .blog-date-month {font-size: 10px;line-height: 24px;}
  .sec__title {font-size: 36px;}
  .common-sec {padding-block: 60px;}
  .sec__title::after {
    height: 20px;
    width: 159px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .grid-section {grid-template-columns: 250px 1fr 250px;}
  .container {max-width: 1020px;}
  .footer__shope .footer__title__icon {height: 80px;left: 55%;transform: translateX(-50%) translateY(-13px);}
  .para__txt {font-size: 16px;}
  .contact-block {padding: 20px 50px 50px 50px;}
  .footer__bg .contact-block .common-form input::placeholder, .footer__bg .contact-block .common-form textarea::placeholder{font-size: 14px;line-height: 24px;}
  .form-field2 {margin-top: 10px;}
  .header .navbar ul {padding-inline: 5px;}
  .header #navbar ul li a {padding-inline: 10px !important;text-transform: capitalize;letter-spacing: 0;}
  .language-link img {max-height: 27px;}
  /* .header-nav .nav-header img.logo {height: 36px;} */
  .news-inner-subtitle {padding-right: 10px;}
  .news-updates .news-updates-container::before {width: 31%;bottom: -160px;}
  .banner-right-inner p.ss {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}
@media screen and (max-width:1300px) {
  .news-updates .news-updates-container::before {width: 31%;bottom: -179px;}
  .awards-subtitle {line-height: 20px;}
  .article-title {line-height: 22px;}
  h2.inner-banner-title {font-size: 42px;line-height: 50px;}
  .banner-sec.inner-secs .banner-right-inner {padding: 60px;}
  .banner-sec.inner-secs .banner-right-inner::before {height: 375px;left: -60px;}
}
@media screen and (max-width:1230px) {
  header nav.navbar ul li a.nav-link {text-transform: capitalize;}
  .banner-sec .banner-container {flex-wrap: wrap;}
  .banner-sec .banner-container .banner-middle {order: 0; width: 100%; max-width: 100%;}
  .banner-sec .banner-container .banner-left-side {order: 1; width: 49%; max-width: 100%;}
  .banner-sec .banner-container .banner-right-side {order: 2; width: 49%; max-width: 100%;}
  .banner-sec .banner-container .banner-middle .carousel-item img {
    height: 550px;
    object-fit: cover;
    object-position: top center;
  }
  .banner-right-inner::before {width: 300px;}
  header nav .logo-img {height: 34px;}
  .navbar-nav {padding-inline: 15px;}
  .language-link img {max-height: 24px;}
  header nav.navbar .language-link a {padding-right: 20px;}
  header nav.navbar ul li a.nav-link {padding-inline: 10px !important;padding-block: 6px;}
  .banner-sec.inner-secs .banner-container .banner-left-side {width: 100%;}
  .banner-sec.inner-secs .banner-container .banner-right-side {width: 100%;}
  .banner-sec.inner-secs .conetnt {width: 80%;}
  .banner-sec.inner-secs .banner-right-inner::before {height: 100%;left: 0;}
}
@media screen and (max-width:1200px) {
  .news-updates .news-updates-container .news-right-box {max-width: 30%;}
  .article-container img {height: auto;}
  .news-updates .news-updates-container .news-middle {max-width: 100%;}
  .news-updates .news-updates-container::before {display: none;}
  .nav-header {max-width: 300px;}
  .header #navbar {width: auto;}
  .blog-detail-banr-inner h2 {font-size: 30px;letter-spacing: 0;font-family:"Poppins-Medium";}
  .flex-blog {flex-wrap: wrap;}
  .blog-detail-banr img {min-height: 500px;object-fit: cover;}
}
@media screen and (max-width:1144px) {
  .grid-section {grid-template-columns: 200px 1fr 200px;}
  header nav.navbar #navbarSupportedContent {margin-left: 0px;}
  .language-link img {max-height: 18px;}
  header nav.navbar .language-link a {padding: 5px;padding-right: 10px;gap: 5px;}
  .navbar-nav {padding-inline: 10px;}
  .header #navbar ul li a {padding-inline: 8px !important;}
  /* .header #navbar {padding-left: 270px;} */
  /* .header-nav .nav-header img.logo {height: 33px;} */
  .right-banner img {object-fit: cover;}
  .banner-left-content {padding-block: 40px;padding-left: 20px;}
  .blog-banr-title {font-size: 32px;}
}

@media screen and (max-width:1024px) {
  .news-inner-subtitle {font-size: 14px;line-height: 24px;font-family: "Poppins-Light";}
  .sec__title { font-size: 32px;}
  .sec__title::after {width: 130px;}
  .grid-section {display: flex;flex-wrap: wrap;justify-content: center;}
  .header .navbar ul {border-radius: 0;}
  .banner-sec .banner-container .banner-left-side {order: 0;width: 100%;}
  .banner-sec .banner-container .banner-right-side {order: 1;width: 100%;}
  .banner-sec .banner-container .banner-middle {order: 2;margin-top: 10px;}
  .banner-right-inner::before {display: none;}
  .header-nav .nav-header img.logo {position: relative;height: 39px;}
  .nav-header {text-align: center;}
  .banner-left-side .banner-left-inner div:last-child{display: none;}
  .banner-right-inner {background-image: none;padding: 0;text-align: center;}
  .banner-right-inner div {text-align: center !important;}
  .banner-sec .banner-container .banner-middle .carousel-item img {height: auto;}
  .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-next,
  .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-prev {top: -70px;right: 0;}
  .owl-carousel.owl-theme.owl-loaded.owl-drag .owl-prev {left: auto;right: 50px;}
  .grid-right {order: 0;}
  .grid-left {order: 1;}
  .grid-middle {order: 2;}
  .grid-right .gallery-card .card-image img, 
  .grid-left .gallery-card .card-image img {max-height: 300px;}
  .banner-sec.inner-secs .banner-right-inner {padding: 0;}
  .banner-sec.inner-secs .conetnt {width: 100%;}
  h2.inner-banner-title {display: none;}
  .acd-inner-cont .acd-inner-img img {height: 60px;}
  .award-text {font-size: 16px;padding-inline: 0;}
  .journy-acd-sec {flex-wrap: wrap;}
  .journy-acd-sec .inner-pages-left-side {padding-right: 0;border-right: none;}
  .journy-acd-sec .inner-pages-right-side {
    padding-top: 40px;
    padding-left: 0;
    display: flex;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .journy-acd-sec .inner-pages-right-side > div {display: block;width: 100%;}
  .journy-acd-sec .inner-pages-right-side > div .blog-title2.mt-4{margin-top: 0 !important;}
	.copy-right {  padding-bottom: 60px;}
	.banner-right-inner a.btnn {
  font-size: 13px;
  padding: 10px 35px;
}
}
@media screen and (max-width:992px) {
  .service-card.mt-150 {margin-top: 0 !important;}
  .right-banner img {object-fit: cover;max-height: 350px !important;}
}
@media screen and (max-width:950px) {
  .news-updates .news-updates-container {flex-direction: column;}
  .news-updates .news-updates-container .news-right-box {width: 100%;max-width: 100%;}
  .right-partition {flex-direction: row;justify-content: space-between;}
  .right-partition > div {width: 49%;}
  .awards {padding-bottom: 24px;}
  .awards-carousel .carousel-control-prev,
  .awards-carousel .carousel-control-next {top: 100%;}
  .news-updates-title, .awards-title {font-size: 22px;}
  .footer__shope .para__txt{padding-inline: 15%;}
  .footer__shope .para__txt br{display: none;}
  .acd-inner-cont:nth-child(2n+1) {border-right: 0;}
}
@media screen and (max-width:768px) {
  .grid-right .gallery-card .card-image img, .grid-left .gallery-card .card-image img {
    object-fit: cover;object-position: top center;}
}

@media screen and (max-width:750px) {
  .right-partition > div {width: 100%;}
  .right-partition {flex-wrap: wrap;}
  .article-container img {height: 220px;object-fit: cover;object-position: top;}
  .carousel-control-prev, .awards-carousel .carousel-control-prev {left: 50%;transform: translateX(-75%);}
  .carousel-control-next, .awards-carousel .carousel-control-next {right: 50%;transform: translateX(75%);}
  .awards {padding-bottom: 45px;}
  .contact-block {padding: 40px;margin: 30px;margin-top: 30px;margin-top: 0;}
  .container-bottom-content {padding-block: 15px;}
  .container-bottom-content span {font-size: 13px;line-height: 22px;}
  .journy-acd-sec .inner-pages-right-side {flex-wrap: wrap;}
}
@media screen and (max-width:600px) {
.projects-slider .owl-stage .owl-item:nth-child(2n) .service-card {
  margin-top: 0 !important;
}
}
@media screen and (max-width:576px) {
	
	
  .container-bottom-content {flex-direction: column;}
  .copy_right_sec {padding-bottom: 60px;}
  .social-media-container {margin-bottom: 0;}
  .common-sec {padding-block: 30px;}
  .sec__title {font-size: 24px;padding-bottom: 20px;margin-bottom: 10px;}
  .initiatives-title {font-size: 20px;line-height: 30px;}
  .service-card {padding-bottom: 0;}
  .news-updates-detail {padding-block: 30px;padding-inline: 20px;}
  .news-box {padding-block: 20px;}
  .news-updates-detail .news-box:last-child{padding-bottom: 0;}
  .carousel-control-prev, .awards-carousel .carousel-control-prev {transform: translateX(-80%);}
  .carousel-control-next, .awards-carousel .carousel-control-next {transform: translateX(80%);}
  .news-read {font-size: 12px;width: 105px;padding: 7px 10px;}
  .container-fluid {padding-inline: 2%;}
  .contact-block {margin: 0;padding: 30px;}
  .form-field {margin-bottom: 25px;}
  .btn-style {font-size: 14px;line-height: 22px;height: 45px;width: 180px;margin-top: 30px;}
  .para__txt {font-size: 14px;line-height: 24px;}
  .footer__shope .footer__title__icon {
    height: 65px;
    left: 50%;
    transform: translateX(-28%) translateY(-30%);
    margin-bottom: -10px; }
    .footer__bg {overflow-x: hidden;}
    .banner-left-inner {padding-top: 30px;}
  .flex-blog {padding: 20px;}
  .blog-detail-banr-inner h2 {font-size: 22px;}
  .right-banner img {max-height: 280px !important;}
  .banr-small-title {flex-wrap: wrap;}
  .blog-banr-title {font-size: 26px;}
	header .language-link {width: auto;min-width: 100px;}
	 .header-nav .nav-header img.logo {width: 280px; height:auto; }
	.gt_float_switcher .gt_options a {
  display: inline-flex;
}
	.nav-header{
		text-align:left;
	}
}
@media screen and (max-width:475px) {
	
  .carousel-control-prev, .awards-carousel .carousel-control-prev {transform: translateX(-88%);}
  .carousel-control-next, .awards-carousel .carousel-control-next {transform: translateX(88%);}
  .acd-inner-main {gap: 20px;padding: 20px;}
  .journy-acd-sec .accordion-button span.title_name {font-size: 16px}
  .journy-acd-sec .accordion-button span img {height: 25px;}
  .accordion-item {margin-bottom: 15px;}
  .acd-inner-text h5 {font-size: 16px;line-height: 26px;letter-spacing: 0;}
  .acd-inner-text p {font-size: 14px;}
  .acd-inner-cont {align-items: self-start;}
  .acd-inner-cont .acd-inner-img img {height: 50px;}
  .right-banner img {max-height: 250px !important;}
}
@media screen and (max-width:420px) {
  .news-box {flex-wrap: wrap;}
  .hash-box {width: 35px;height: 35px;}
  .news-box > div:nth-child(2) {order: 2;}
  .news-box > div:last-child {order: 1;}
  .right-banner img {max-height: 200px !important;}
  .blog-banr-title {font-size: 20px;line-height: 32px;}
	.article-container img {
		height: 150px;}
}
@media screen and (max-width:375px) {
  .footer__shope .para__txt {padding-inline: 0;}
  .carousel-control-prev, .awards-carousel .carousel-control-prev {transform: translateX(-98%);}
  .carousel-control-next, .awards-carousel .carousel-control-next {transform: translateX(98%);}
  .news-updates-title, .awards-title {font-size: 20px;}
  .acd-inner-main {gap: 15px;padding: 10px;}
  .acd-inner-cont .acd-inner-img img {height: 40px;}
  .right-banner img {max-height: 180px !important;}
}






/* Raju */
.form-control.error{
  border-color:red
}
label.error{
color: red !important;
}
.gallery-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 25px;
  grid-template-rows: auto;
  align-items: center;
}
.gallery-grid .gallery-card:nth-child(1), .gallery-grid .gallery-card:nth-child(5){
  grid-row: span 2;
}
.card-image img{height: 245px;object-fit: cover;overflow: hidden;border-radius: 10px;}
.gallery-grid .gallery-card:nth-child(1) .card-image img,
.gallery-grid .gallery-card:nth-child(5) .card-image img{
height: 350px;
}
@media screen and (min-width:1600px) {
  .gallery-grid .gallery-card:nth-child(1) .card-image img,
  .gallery-grid .gallery-card:nth-child(5) .card-image img{
  height: 470px;
  }
  .card-image img{height: 304px;}
}
@media screen and (max-width:1300px) {
  .gallery-grid{
    gap: 15px;
  }
  .card-image img{height: 200px;}
  .gallery-grid .gallery-card:nth-child(1) .card-image img,
  .gallery-grid .gallery-card:nth-child(5) .card-image img{
  height: 300px;
  }

}
@media screen and (max-width:991px) {
  .gallery-grid{
    grid-template-columns: repeat(3,1fr);
  }
  .gallery-grid .gallery-card:nth-child(1), .gallery-grid .gallery-card:nth-child(5){
    grid-row: span 1;
  }
  .gallery-grid .gallery-card:nth-child(1) .card-image img,
  .gallery-grid .gallery-card:nth-child(5) .card-image img{
  height: 200px;
  }
}
@media screen and (max-width:767px) {
  .gallery-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

.wpcf7-not-valid-tip{
  display: none !important;
}

.gt_float_switcher{
  font-size: 13px !important;
}
.gt_float_switcher img{
  width: 25px !important;
}
.gt_float_switcher .gt_options.gt-open{
  text-align: left !important; 
}
.lp{
position: absolute;
right: 0;
}

.projects-slider .owl-stage .owl-item:nth-child(even) .service-card {
  margin-top: 150px;
}

.gt_float_switcher {
  font-size: 18px;
  line-height: 20px;
  box-shadow: none !important;
  background: #c2e6fb !important;
  transition: all .5scubic-bezier(0.4, 0, 1, 1);

  /* border-radius: 50px !important; */
  /* border: 1px solid #0a3981 !important; */
 
  font-family: "Poppins-Medium";
 
  color: #191e21 !important;
}
.gt_float_switcher .gt-selected {
  border: 1px solid #0a3981 !important;
  border-radius: 50px !important;

  position: relative;
  z-index: 888;
  background-color: #c2e6fb !important;
  cursor: pointer;
  text-transform: uppercase;
  /* overflow: hidden; */

}
.gt_float_switcher .gt-selected .gt-current-lang {
  padding: 5px 10px !important;
}

.category-head{
  font-size: 20px;
  color: #090909;
  font-family: "Poppins-Medium";
  line-height: 28px;
  margin-bottom: 10px;
  display: inline-block;
}
.catgory-des{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp:2;
  text-overflow: ellipsis;
  font-size: 14px;
  line-height: 24px;
  color: #000;
  font-family: 'Poppins-Light';
}
.project-card img{
  max-width: 100%;
}
.gallery-wrapper a>img, .gallery_set a>img{
  transition: ease all 0.5s;
  border-radius: 2px;
}
.gallery-wrapper a>img:hover, .gallery_set a>img:hover{
  transform: scale(1.05);
}
.card-image{
  transition: ease all 0.5s;
}
.card-image:hover{
  transform: scale(1.05);
}
.right-partition .awards-text{
  min-height: 78px;
}

@media screen and (max-width:475px) {
	.card-image img, .gallery-grid .gallery-card:nth-child(1) .card-image img, .gallery-grid .gallery-card:nth-child(5) .card-image img{
		height:150px;
	}
	header .language-link a{
		display:flex !important;
	}
	.nav-header{
		max-width:260px
	}
	 .header-nav .nav-header img.logo {width: 260px; height:auto; }
	.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 3px 5px !important;
}
	header .language-link{
		max-width:82px;
	}
}
@media screen and (max-width:400px) {

	.nav-header{
		max-width:240px
	}
	
	 .header-nav .nav-header img.logo {width: 240px; height:auto; }
	.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 3px 5px !important;
}
}
.editor-des ul li{
	padding-left:22px;
	position:relative;
	padding-bottom:7px;
} 
.editor-des ul li:before{
	position:absolute;
	top:1px;
	font-size:14px;
	left:0px;
	content:'\F588';
	    font-family: bootstrap-icons !important;
} 