@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@200..800&family=Mona+Sans:ital,wght@0,200..900;1,200..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+Display:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
  color: #444444;

}

.pd img {
  max-width: 100%;
  width: 313px;
  height: 200px;
  transition: all 0.5s;
}

a {
  color: #e03a3c;
  text-decoration: none;
}

a:hover {
  color: #e76668;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e03a3c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e65d5f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 30px;
  background: #e03a3c;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
}

.get-started-btn:hover {
  background: #111111;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #000;
  background: #ffd01b;
  border: 2px solid #ffd01b;
}

#hero .btn-get-started:hover {
  background: #fff;
  border-color: #fed346;
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding-bottom: 20px;
  /* padding: 60px 0; */
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color:#242456;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0081c3;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

.section-bg {
  padding: 120px 0;
  color: #fff;
}

.section-bg:before {
  content: "";
  background: #1b1b1b;
  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #e03a3c;
  content: "/";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
section#clients {
    padding: 26px 0;
}

.clients .swiper-pagination {
  margin-top: 20px;
  display: none;
  position: relative;
}

.img-fluid {
  width: 57px;
  max-width: 100%;
  /* height: auto; */
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0081c0;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0081c0;
}

.clients .swiper-slide img {
 /*  opacity: 0.5; */
  transition: 0.3s;
 /*  filter: grayscale(100); */
}

.clients .swiper-slide img:hover {
  opacity: 1;
  filter: none;
}

/*--------------------------------------------------------------
# countryproject
--------------------------------------------------------------*/
.countryproject .container {
  position: relative;
  z-index: 10;
}

.countryproject .content {
  padding: 30px 30px 30px 0;
}

.countryproject .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.countryproject .content p {
  margin-bottom: 30px;
}

.countryproject .content .countryproject-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #e03a3c;
}

.countryproject .content .countryproject-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.countryproject .content .countryproject-btn:hover {
  background: #e35052;
  background: #e03a3c;
}

.countryproject .icon-boxes .icon-box {
  margin-top: 30px;
}

.countryproject .icon-boxes .icon-box i {
  font-size: 40px;
  color: #e03a3c;
  margin-bottom: 10px;
}

.countryproject .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.countryproject .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

@media (max-width: 1200px) {
  .countryproject .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .countryproject {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #e03a3c;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}





.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.tabs .nav-link:hover {
  color: #e03a3c;
}

.tabs .nav-link.active {
  background: #e03a3c;
  color: #fff;
  border-color: #e03a3c;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #e03a3c;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.projects .icon-box {
  margin-bottom: 20px;
  padding: 30px;
  background: #010101;
  transition: 0.3s;
  position: relative;
  text-align:center;
}

.projects .icon-box:hover {
  background: #2b2b2b;
}

.projects .icon-box i {
  float: left;
  color: #e03a3c;
  font-size: 40px;
  line-height: 0;
}

.projects .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
}

.projects .icon-box h4 a {
  color: #fed346;
  transition: 0.3s;
}

.projects .icon-box h4 a:hover {
  text-decoration: underline;
}

.projects .icon-box .icon-box:hover h4 a {
  color: #e03a3c;
}

.projects .icon-box p {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #e03a3c;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(17, 17, 17, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #fff;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #e03a3c;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e03a3c;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
section#blog {
    margin-top: 0px;
	padding: 120px 0 20px 0;
}

section#blog:before {
    content: "";
    background: #fafafa;
    position: absolute;
    bottom: -47px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(4deg);
}

section#blog  .section-title{padding-bottom:0px;}
.headcontent{padding:0 10px 0 10px;}
.blog .blog-carousel,
.blog .blog-slider {
  overflow: hidden;
}

.blog .blog-item {
  box-sizing: content-box;
  padding: 5px;
  margin: 30px 6px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
  display:grid;
}

.blog .blog-item .blog-img {
  width: 100%;
  border-radius: 10px;
  border-bottom: 8px solid #0081c0;
  float: left;
  
  
}

.blog .blog-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
  height:70px;
}

.blog .blog-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.blog .blog-item .quote-icon-left,
.blog .blog-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.blog .blog-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.blog .blog-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.blog .blog-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
  height:40px;
}



.blog .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0081c0;
}

.blog .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0081c0;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #2b2b2b;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing .box h4 {
  font-size: 42px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #e03a3c;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing .box .btn-buy:hover {
  border-color: #fff;
}

.pricing .featured {
  background: #e03a3c;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: #e03a3c;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #e03a3c;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  position: relative;
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111111;
  margin: 0 3px;
  border-radius: 50px;
  width: 36px;
  height: 36px;
  background: #e03a3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  color: #fff;
}

.team .member .social a:hover {
  background: #111111;
}

.team .member .social i {
  font-size: 18px;
  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px 0 32px 0;
  border-radius: 4px;
}

.contact .info-box i {
  font-size: 32px;
  color: #e03a3c;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f8d4d5;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  border-radius: 4px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #111111;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
  background: #e03a3c;
  border: 0;
  padding: 10px 32px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #e35052;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #e03a3c;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #e03a3c;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #e35052;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #e03a3c;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #e03a3c;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #ee9293;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #ee9293;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #e03a3c;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #e34c4d;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #e03a3c;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #e03a3c;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #aaaaaa;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #e03a3c;
  background: #e03a3c;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.fooetr-nav ul{margin:0px; padding:0px;}
.fooetr-nav ul li {
    display: inline-block;
}
.fooetr-nav ul li a{
	padding: 10px 14px 10px 27px;
    font-size: 14px;
    font-weight: 500;}
.fooetr-nav ul li a::after {
    content: "";
    background-image: url(../images/devider-icon.png);
    width: 2px;
    height: 23px;
    display: inline-block;
    vertical-align: middle;
    left: 21px;
    position: relative;
    top: 3px;
}
.fooetr-nav ul li:last-child a::after {
    content: none;
}	
#footer .menu-bg{background:#0081c3;     top: 0;}
#footer {
  color: #fff;
  font-size: 14px;
  background: #111111;
}

#footer .footer-top {
  padding: 31px 0 0px 0;
  background: #010101;
}

#footer .footer-top .footer-contact {
  margin-bottom: 0px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

#footer .footer-top .footer-contact h3 span {
  color: #e03a3c;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
}
.social-links
{text-align:left !important;}

#footer .footer-top h4 {
  font-size: 20px;
  font-weight: 800;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: #0081c0;
  bottom: 0;
  left: 0;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  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: #aaaaaa;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 5px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #e03a3c;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #e35052;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
}

#footer .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #2b2b2b;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 32px;
  height: 32px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0081c0;
  color: #fff;
  text-decoration: none;
}

.top-logo{background:#18b6ff6b; text-align: center; padding: 11px 34px 5px 0; position:relative; left:0; right:0;}

.top-logo:before {
    content: "";
    position: absolute;
    top: 0;
    right: -200px;
    width: 0;
    height: 0;
    z-index: 999;
    background: #fff;
    /* border-top: 0px solid transparent;
    border-bottom: 34px solid transparent;
    border-left: 60px solid #006fbb; */
	border-top: 150px solid transparent;
    border-left: 123px solid #18b6ff6b;
    border-right: 100px solid transparent;
}
.img1 {
	padding: 0 10px 0 10px;
    float: left;
}
.rght-panal {
  gap: 40px;
	margin-top: 5px;
    display: flex;
    justify-content: end;
	align-items: center;
}	
.menu-bg{
	width: 100%;  
    position: relative;
    top: 90px;
    z-index: 9;}
/* .section-bg:before {
    content: "";
    background: #1b1b1b;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
   transform: skewY(-3deg); 
	} */
	
section#tophead {
    padding: 0;
}
#hero:after{
	content: "";
   
    position: absolute;
    bottom: 91px;
    /* top: 0; */
    left: 0;
    right: 0;
    transform: skewY(5deg);
    height: 35px;}
	
/* .bg-blue{ position:relative;}
.bg-blue:after {
    content: "";
    background: #0380c3;
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    transform: skewY(-1deg);
    height: 51px;
    z-index: -1;
} */

/* .bg-yellow
{ position:relative;}
.bg-yellow:after {
    content: "";
    background: #fed346;
    position: absolute;
    bottom: -17px;
    left: 0;
    right: 0;
    transform: skewY(-2deg);
    height: 70px;
    z-index: -1;
} */

.bg-yellow{
  margin-top: -1px;
}

.project-bg{background:#0081c3; border-radius: 64px; padding: 13px 13px;}
.project-border{border:3px dashed #fff; border-radius: 64px;}
.project-bg h4{color:#fed750; font-weight:800; font-size: 32px; margin-top: 16px;}
.project-bg p strong{font-weight:800; font-size: 23px;}
.project-bg p {
    margin-top: 0;
    margin-bottom: 0.2rem;
    font-size: 14px;
    padding-right: 17px;
}
.projectimg-box img {
    border-radius: 25px;
    border: 4px solid #fff;
	height: 290px;
	width:100%;
}
.projectimg-box {
    margin-top: -30px;
    margin-left: 25px;
    /* height: 100%; */
    margin-bottom: -48px;
	box-shadow: rgba(0, 0, 0, 0.99) 0px 0px 0px, rgba(0, 0, 0, 0.99) 0px 10px 34px; border-radius: 64px;
}

.countryproject .content {
    padding: 9px 45px 0px 0;
    text-align: right;
    position: relative;
    top: 23px;
}

.countryproject .content .countryproject-btn {
    padding: 8px 30px 9px 30px;
    color: #000;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #f1c536;
	background:#ffd54e;
}

.countryproject .content .countryproject-btn:hover {
    background: #0081c3;
   color:#fff;
}
section#countryproject:before {
    content: "";
    background: #f1f1f1;
    position: absolute;
    bottom: 60px;
    top: 60px;
    left: 0;
    right: 0;
    transform: skewY(-3deg);
}

.projects .icon-box h4 {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-bottom: 11px;
    position: relative;
}

.projects .icon-box h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #fed346;
    bottom: 0;
    left: calc(50% - 25px);
}

.projects .icon-box.border1{
    border-radius: 80px 0 0 0px;
}
.projects .icon-box.border3{
    border-radius: 0 80px 0 0;
}

.projects .icon-box.border4{
    border-radius: 0 0px 0 80px;
}

.projects .icon-box.border5{
    border-radius: 0 0 80px 0;
}

section#projects {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
  bottom: 60px;
  top: 60px;
   transform: skewY(0deg);
}

section#projects:before {
    content: "";
    background: rgba(254, 211, 70, 0.7);
    position: absolute;
    bottom: -260px;
    top: 163px;
    left: 0;
    right: 0;
    transform: skewY(21deg);
}

section#ourpresence {
    margin-top: 70px;
}

.mapwrap img {
    width: 80%;
	margin-left: 61px;
}

.mapwrap::before {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 56%;
    background: #0081c3;
    bottom: 0;
    left: calc(10.8% - 8px);
	right:0;
    border-radius: 4px;
    top: 239px;
    bottom: 0;
}

.mapbg {
    background: #0081c3;
    border-radius: 15px 4px 4px 15px;
    color: #fff;
}
	
.map-rght {
    margin-bottom: 30px;
}

.map-rght h2{    
    background: #fff;
    color: #0081c3;
    font-weight: 800;
    font-size: 18px;
    padding: 5px 20px;
	text-transform:uppercase;
	}

.map-rght ul
{margin:0px 0 0 18px; 
  padding:0px;}	

.map-rght ul li{
	font-size: 13px;
    padding-bottom: 4px;}	

.ourpresence-content{
    margin-top: 26px;
}

.mapscroll {
    max-height: 433px; 
    overflow-y: auto;
    padding: 26px 26px;
		}

.mapscroll::-webkit-scrollbar {
    width: 6px; 
    height: 100%;
}

.mapscroll::-webkit-scrollbar-thumb {
    background-color: #1d455a; 
    border-radius: 15px 15px 15px 15px;
}

.mapscroll::-webkit-scrollbar-thumb:hover {
    background-color: #ffd54e; 
	
}

.mapscroll::-webkit-scrollbar-thumb:active {
    background-color: #f39c12; 
}

.mapAreaPoint {
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    -webkit-box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 30px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.mapAreaPoint:after {
    width: 50px;
    height: 40px;
    position: absolute;
    right: -22px;
    top: 30px;
    content: '';
    background: #fff;
    transform: rotate(45deg);
}

.mapAreaPoint svg {
    fill: #fb2525;
    width: 15px;
}

.mapAreaPoint .video-main {
  display: inline-block;
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%)
} 

.mapAreaPoint .video-main .video {
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 100%;
    background: transparent;
    color: #fe8800;
    font-size: 20px;
    display: inline-block;
    background: #f1f1f1;
    z-index: 999;
}

.mapAreaPoint .video-main .waves-block {
    position: relative;
}

.mapAreaPoint .waves {
    border-radius: 50%;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0px;
    left: 0px;
    background-color: rgba(0, 123, 255, 0.3); /* Light blue color */
    animation: ripple 2s infinite;
}

.mapAreaPoint .wave-1 {
    animation-delay: 0s;
}

.mapAreaPoint .wave-2 {
    animation-delay: 0.5s;
}

.mapAreaPoint .wave-3 {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Tooltip hover and animation */
.mapAreaPoint .video svg {
    width: 24px;
    height: 24px;
    fill: #007bff; /* Initial blue color */
    transition: fill 0.3s ease;
}

.mapAreaPoint .video-main:hover .video svg {
    fill: #ff0000; /* Red color on hover */
}

.mapAreaPoint .video-main:hover .waves {
    background-color: rgba(255, 0, 0, 0.5); /* Red color on hover */
}

.mapAreaPoint .video-main .video:hover {
    cursor: pointer;
}

.mapAreaPoint .video-main:hover .waves {
    animation: ripple 1s infinite; /* Faster ripple animation on hover */
}

.mapAreaPoint .video-main:hover .promo-video {
    transform: scale(1.1); /* Slightly increase the size on hover */
    transition: transform 0.3s ease;
}

/* Position adjustments for state points */
.mapAreaPoint .video-main.punjabArrow {
    position: absolute; top: 20%; left: 30%;
}
.mapAreaPoint .video-main.delhiArrow {
    position: absolute; top: 32%; left: 40%;
}

.mapAreaPoint .video-main.uttarpradeshArrow {
    position: absolute; top: 38%; left: 47%;
}

.mapAreaPoint .video-main.jamukashmeerArrow {
    position: absolute; top: 10%; left: 35%;
}

.mapAreaPoint .video-main.madhyapradeshArrow {
   position: absolute; top: 50%; left: 35%;
}

.mapAreaPoint .video-main.andhrapradeshArrow {
   position: absolute; top: 72%; left: 41%;
}

.mapAreaPoint .video-main.karnatakaArrow {
    position: absolute; top: 78%; left: 30%;
}
a.video {
    position: relative;
    top: 10px;
    left: 0;
} 

/* Hover effects specific to each state */
.mapAreaPoint .video-main.punjabArrow:hover svg {
    fill: #00ff00; /* Punjab - Green on hover */
}

/* Hover effects specific to each state */
.mapAreaPoint .video-main.delhiArrow:hover svg {
    fill: #FFFF00; /* Delhi - Yellow on hover */
}

/* Hover effects specific to each state */
.mapAreaPoint .video-main.uttarpradeshArrow:hover svg {
    fill: #800080; /* Uttar Pradesh - Purple on hover */
}

.mapAreaPoint .video-main.jamukashmeerArrow:hover svg {
    fill: #ffcc00; /* Jammu and Kashmir - Yellow on hover */
}

.mapAreaPoint .video-main.madhyapradeshArrow:hover svg {
    fill: #800080; /* Madhya Pradesh - Purple on hover */
}

.mapAreaPoint .video-main.andhrapradeshArrow:hover svg {
    fill: #00ffff; /* Andhra Pradesh - Cyan on hover */
}

.mapAreaPoint .video-main.karnatakaArrow:hover svg {
    fill: #ff6600; /* Karnataka - Orange on hover */
}

/* Adjust waves color for each state */
.mapAreaPoint .video-main.punjabArrow:hover .waves {
    background-color: rgba(0, 255, 0, 0.5); /* Punjab - Green waves on hover */
}

.mapAreaPoint .video-main.delhiArrow:hover .waves {
    background-color: rgba(255, 255, 0, 0.5); /* Delhi - Yellow waves on hover */
}

.mapAreaPoint .video-main.delhiArrow:hover .waves {
    background-color: rgba(128, 0, 128, 0.5); /* Uttar Pradesh - Purple waves on hover */
}

.mapAreaPoint .video-main.jamukashmeerArrow:hover .waves {
    background-color: rgba(255, 204, 0, 0.5); /* Jammu and Kashmir - Yellow waves on hover */
}

.mapAreaPoint .video-main.madhyapradeshArrow:hover .waves {
    background-color: rgba(128, 0, 128, 0.5); /* Madhya Pradesh - Purple waves on hover */
}

.mapAreaPoint .video-main.andhrapradeshArrow:hover .waves {
    background-color: rgba(0, 255, 255, 0.5); /* Andhra Pradesh - Cyan waves on hover */
}

.mapAreaPoint .video-main.karnatakaArrow:hover .waves {
    background-color: rgba(255, 102, 0, 0.5); /* Karnataka - Orange waves on hover */
}

/* banner start */
.bg-blue .carousel-item:before {
    background: #000;
    content: "";
    height: 100%;
    left: 0;
    mix-blend-mode: multiply;
    opacity: .30;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.bg-blue .carousel-item {
	height: 50vh;
	min-height: 400px;
	background-size: cover;
	background-position: center;
	position: relative;
}

.footer-nav{
  color: white!important;
}

.browwa-connecting{
  background-color: white;
  height: 306px;
  padding-bottom: 30px; box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    border-radius: 20px;
      padding-left: 20px;
      border-radius:20px;
     padding-right: 20px;
      padding-top: 15px;
}

.aboutus-browwa{
  margin-bottom: 0px;
  text-align: center;
  padding: 15px;
  font-size: 16px;
  color: #272727;
  line-height: 1.4;
  background-color:#eeeeee;
  border-radius: 10px;
}



.bg-blue .carousel-caption {
	position: absolute;
	top: 55%;
	left: 137px;
	transform: translateY(-50%);
	color: white;
	text-align: left;
}

.carousel-control-prev-icon, .carousel-control-next-icon{
  display: none;
}

.bg-blue .carousel-caption h1 {
  line-height: 1.4;
  letter-spacing: 1;
	font-size: 2rem;
  margin-bottom: 10px;
	font-weight: 600;
  padding-left: 12px;
	/* text-transform: uppercase; */
}

.bg-blue .carousel-caption p {
  margin-bottom: 20px;
	font-size: 40px;
  font-weight:700;
  line-height:50px;
	/* max-width: 600px; */
  padding-left: 12px;
}

.bg-blue .carousel-caption .btn {
	padding: 12px 30px;
	font-size: 1rem;
	background-color: #f44336;
	color: white;
	border-radius: 30px;
	text-transform: uppercase;
	text-decoration: none;
}

/* Social Media Section */
.social-icons {
	position: absolute;
    right: 68px;
    top: 78%;
    transform: translateY(-50%);
    text-align: right;
    z-index: 99;
}

.social-icons a {
	display: inline-block;
    color: #242456;
    font-size: 1.2rem;
    margin-bottom: 10px;
    width: 28px !important;
    height: 29px !important;
    text-align: center;
    border-radius: 50%;
    line-height: 26px !important;
    padding: 4px !important;
	margin: 0 5px;
}

.social-icons a:hover{background:#006697; color:#fff; border-radius:50%;}
.bannerlogo {
    color: #000 !important;
    font-size: 16px;
    font-weight: 800;
}

/* Yellow Right Bar */
/*.bg-blue .yellow-bar {
  position: absolute;
  right: -11%;
  top: 0;
  width: 35%;
  height: 100%;
  background-color: #FF5722;
  -webkit-animation: yellow-shape 1s forwards ease-out 2s;
  animation: yellow-shape 1s forwards ease-out 2s;
  transform: skewX(332deg);
}*/
.bro-president .dots {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.bro-president .dots span {
  position: absolute;
  border-radius: 50%;
   background-image: linear-gradient(45deg, #e7e2d3, #fbecc2);
  border-radius: 38% 62% 55% 45%/32% 53% 47% 68%;
  animation: vawe 7s linear infinite;
}
/*.bro-president .dots span:nth-child(1) {
  top: 10%;
  left: calc(100% - 360px);
  width: 75px;
  height: 75px;
}*/
.bro-president .dots span:nth-child(2) {
  top: 15px;
  left: 180px;
  width: 50px;
  height: 50px;
  border-radius: 38% 62% 33% 67%/60% 53% 47% 40%;
  transform: rotate(90deg);
}
.bro-president .dots span:nth-child(3) {
     right: 0px;
    bottom: -41px;
  width: 80px;
  height: 80px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
}
.bro-president .dots span:nth-child(4) {
  bottom: 50px;
  left: 240px;
  width: 20px;
  height: 20px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
}
.bro-president .dots span:nth-child(5) {
  right: 280px;
  bottom: 80px;
  width: 25px;
  height: 25px;
  border-radius: 38% 62% 55% 45%/52% 53% 47% 48%;
}
/*.bro-president .dots span:nth-child(6) {
  top: 6%;
  left: calc(100% - 400px);
  width: 25px;
  height: 25px;
}*/


.bg-blue .yellow-bar {
    position: absolute;
    right: -7%;
    top: 11px;
    width: 35%;
    bottom: 10px;
    /* height: 100%; */
    background-color: #fffaec;
    -webkit-animation: yellow-shape 1s forwards ease-out 2s;
    animation: yellow-shape 1s forwards ease-out 2s;
    transform: skewX(345deg);
    border: 3px dotted #c5b78e;
    box-shadow: 0 0 0 10px #fffaec;
    overflow: hidden;
}

.bg-blue .yellow-bar::before, .bg-blue .yellow-bar::after {
    position: absolute;
    width: 230px;
    height: 280px;
    content: "";
    border-radius: 54% 46% 42% 58%/60% 58% 42% 40%;
    background-image: linear-gradient(45deg, #e7e2d3, #fbecc2);
    animation: vawe 5s linear infinite;
}

.bg-blue .yellow-bar::before {
  top: -10%;
  right: -10%;
}
.bg-blue .yellow-bar::after {
  bottom: -10%;
  left: -15%;
}


@keyframes vawe {
  20% {
    border-radius: 45% 55% 62% 38%/53% 51% 49% 47%;
  }
  40% {
    border-radius: 45% 55% 49% 51%/36% 51% 49% 64%;
  }
  60% {
    border-radius: 60% 40% 57% 43%/47% 62% 38% 53%;
  }
  80% {
    border-radius: 60% 40% 32% 68%/38% 36% 64% 62%;
  }
}

.bg-blue .carousel-control-next {
    right: 250px;
}

.bg-blue .carousel-control-prev {
    left: -58px;
}

.bg-blue .bannerlogo{
	z-index: 10;
    -webkit-animation: color-change .1s forwards ease-out 2.5s;
    animation: color-change .1s forwards ease-out 2.5s;
    top: 0px;
    color: #c4f4d5;
    position: relative;
    right: 28px;
	}

.bg-blue .yellowrght {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-blue .countryproject-btn {
    padding: 8px 30px 9px 30px;
    color: #000;
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    border: 2px solid #f1c536;
	background:#ffd54e;
}

.bg-blue .countryproject-btn:hover {
    background: #0081c3;
   color:#fff;
}

/* banner end */
.swiper-wrapper{height:auto;}
.slidebg
{background:#fff; height:102px; display:flex; justify-content:center; align-items:center;
  border-radius: 20px;
  border: 1px solid #add8e640;
}

.browwa-navbar{
  background-color: #0a457f;
  color: white;
}

.top-nav{
  border-right: 1px solid lightgrey;
  font-size: 12px;
}

.swiper-button-prev:after {
  font-size: 21px!important;}

  .swiper-button-next:after {
    font-size: 21px!important;}
  

.swiper-button-next:after, .swiper-button-prev:after {
  margin-top: 23px;
  font-family: swiper-icons;
  /* font-size: var(--swiper-navigation-size); */
  text-transform: none!important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiperarrow {
    position: relative;
    top: -63px;
    bottom: 0;
   }

.swiperarrow .swiper-button-next, .swiper-button-prev {
	width: calc(var(--swiper-navigation-size) / 49* -108);
}

:root {
    --swiper-navigation-size: 36px;
}

.swiperarrow .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, -13px);
    left: auto;
}  

.swiperarrow .swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, -18px);
    right: auto;
}

.img1.img2 {
    width: 310px;
}

.img1.img2 img {
    width: 140px;
}

iframe.responsive-video.embed-responsive-item {
  width: 557px;
  height: 346px;
 }

section.BROWWA {
    margin-top: -74px;
}

.aboutcontentbrowa p strong {
    font-weight: 700;
	color:#242456;
}

.bro-president{
	position: absolute;
	right:40px;
	top: 46%;
	transform: translateY(-50%);
	text-align: right;
	z-index: 99;
}

.bro-president span img {
   height: 100px;
    width: 100px;
    border-radius: 50%;
	border: 3px solid #fec307;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.bro-president h3{
	font-size: 22px;
    color:#191919;
    text-align: center;
    padding-top: 22px;
    line-height: 25px; font-weight:600;}
	
.bro-president h3 span{
	font-size: 18px;
    color: #747474;
    padding-top: 12px;
    }	

.bro-president p {
  text-align:justify;
    width: 330px;
    color: #d34416;
    font-size: 14px;
}

.bro-president a.btn{ background:#0a457f; color:white; border-radius:10px; padding:6px 15px; }
.bro-president a.btn:hover{background:#f8c500; color:#000;}

	
/* tab start */
.tabs-box{
	position: relative;
}

.tabs-box .tab{
	display: none;
}

.tabs-box .tab.active-tab{
	display: block;
}

.schedule-tabs{
	position: relative;
}

.schedule-tabs .btns-box{
	position: relative;
	display: block;
	margin-bottom: 40px;
}

.schedule-tabs .tab-buttons{
	position: relative;
	text-align: center;
}

.schedule-tabs .tab-buttons li{
	position: relative;
    display: inline-block;
    height: 135px;
    width: 160px;
    border-radius: 20px;
    background-color: #ffffff;
    font-size: 16px;
    line-height: 20px;
    color: #222222;
    font-weight: 600;
    text-align: left;
    padding: 15px 15px;
    padding-top: 70px;
    padding-left: 90px;
	cursor: pointer;
	margin: 0 15px 20px;
	border: 1px solid #dddddd;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.schedule-tabs .tab-buttons li .day{
    position: absolute;
    left: 0px;
    top: 30px;
    padding: 5px 20px;
    background-color: #222222;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    color: #ffffff;
    border-radius: 0 15px 15px 0;
}

.schedule-tabs .tab-buttons li .date{
	position: absolute;
    left: -0;
    top: 80px;
    width: 100px;
    text-align: center;
    font-size: 38px;
    line-height: 20px;
    font-weight: 600;
    color: #222222;
}

.schedule-tabs .tab-buttons li .month{
	display: block;
    font-size: 20px;
    line-height: 1em;
    font-weight: 600;
    color: #222222;
    text-transform: uppercase;
}

.schedule-tabs .tab-buttons li .year{
	font-size: 30px;
}

.schedule-tabs .tab-buttons li.active-btn{
	box-shadow: 0 20px 30px rgba(0,0,0,.10);
}

.schedule-tabs .tab-buttons li:nth-child(4n + 1) .day{
	background-color: #ffc20b;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2) .day{
	background-color: #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3) .day{
	background-color: #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4) .day{
	background-color: #e6275a;
}


.schedule-tabs .tab-buttons li:nth-child(4n + 1) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 1) .date{
	color: #ffc20b;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 2) .date{
	color: #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 3) .date{
	color: #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4) .month,
.schedule-tabs .tab-buttons li:nth-child(4n + 4) .date{
	color: #e6275a;
}


.schedule-tabs .tab-buttons li:nth-child(4n + 1).active-btn{
	box-shadow: 0 0px 30px rgba(255,194,11,.30);
	border: 1px solid #ffc20b;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2).active-btn{
	box-shadow: 0 0px 30px rgba(64,203,180,.30);
	border: 1px solid #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3).active-btn{
	box-shadow: 0 0px 30px rgba(76,53,169,.30);
	border: 1px solid #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4).active-btn{
	box-shadow: 0 0px 30px rgba(230,39,90,.30);
	border: 1px solid #e6275a;
}

.schedule-timeline{
	position: relative;
}

/*=== Schedule Block ===*/

.schedule-block{
	position: relative;
	margin-bottom: 30px;	
}

.schedule-block:after{
	display: table;
	clear: both;
	content: "";
}

.schedule-block .inner-box{
	position: relative;
	float: right;
	width: 50%;
	text-align: left;
}

.schedule-block .inner-box .inner{
	position: relative;
	padding: 20px 30px 20px;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	margin-left: 80px;
	border-radius: 20px;
}

.schedule-block .inner:before{
	position: absolute;
    top: 0;
    bottom: -30px;
    right: 100%;
    border-left:2px dashed #dddddd;
    content: "";
    margin-right: 80px;
}

.schedule-block .inner:after{
	position: absolute;
	right: 100%;
	top: 35px;
	border-top: 15px solid transparent;
	border-right: 20px solid #f8bc24;
	border-bottom: 15px solid transparent;
	content: "";
}

.schedule-block .date{
    position: absolute;
    left: -132px;
    width: 100px;
    top: 0px;
    height: 100px;
    background-color: #ffffff;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    color: #212639;
    font-weight: 500;
    padding: 30px 15px 0;
    border-radius: 50%;
    border:2px dashed #dddddd;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
}

.schedule-block .speaker-info{
	position: relative;
	padding-left: 80px;
	padding-top: 10px;
	min-height: 60px;
}

.schedule-block .speaker-info .thumb{
	position: absolute;
	left: 0;
	top: 0;
	width: 60px;
	border-radius: 50%;
	overflow: hidden;
}

.schedule-block .speaker-info .name{
	font-size: 16px;
	color: #212639;
	font-weight: 500;
	line-height: 1.2em;
}

.schedule-block .speaker-info .designation{
	font-size: 13px;
}

.schedule-block h4{
	position: relative;
	margin:0; padding: 0;
	font-size:16px;
	line-height: 20px;
	color: #0f1925;
	font-weight: 600;
	margin-bottom:5px;
	
}

.schedule-block h4 a{
	color: #212639;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.schedule-block h4 a:hover{
	color: #f14b59;
}

.schedule-block .text{
	position: relative;
	font-size: 15px;
	line-height: 26px;
	color: #000;
	margin-bottom: 15px;
}

.schedule-block .btn-box{
	position: relative;
	padding: 6px 0;
	position: absolute;
}
.schedule-block .btn-box.right-20{ right: 20px; }
.schedule-block .btn-box.left-20{ left: 20px; }

.schedule-block .btn-box a{
	padding: 7px 15px;
	line-height: 20px;
	font-size: 14px;
	background-color: #444444;
	color: #ffffff;
	border-top:2px solid transparent;
	border-bottom:2px solid transparent;
	border-radius: 5px;
}

.schedule-block .btn-box a:hover{
	color: #ffffff;
	/* box-shadow: 0 10px 20px rgba(0,0,0,0.10); */
}

.schedule-block.even .inner-box{
	float: left;
	text-align: right;
}

.schedule-block.even .inner-box .inner{
	margin-left: 0;
	margin-right: 80px;
}

.schedule-block.even .inner:before{
	right: auto;
	left: 100%;
	margin-left: 80px;
	margin-right: 0;
}

.schedule-block.even .inner:after{
	right: auto;
	left: 100%;
	border-right: 0;
	border-left: 20px solid #40cbb4;
}

.schedule-block:last-child .inner:before{
	display: none;
}

.schedule-block.even .date{
	left: auto;
	right: -132px;
}

.schedule-block.even .speaker-info{
	padding-left: 0;
	padding-right: 80px;
}

.schedule-block.even .speaker-info .thumb{
	left: auto;
	right: 0;
}

.schedule-block:nth-child(4n + 1) .date,
.schedule-block:nth-child(4n + 1) .inner:before{
	border-color: #ffc20b;
}

.schedule-block:nth-child(4n + 2) .date,
.schedule-block:nth-child(4n + 2) .inner:before{
	border-color: #40cbb4;
}

.schedule-block:nth-child(4n + 3) .date,
.schedule-block:nth-child(4n + 3) .inner:before{
	border-color: #4c35a9;
}

.schedule-block:nth-child(4n + 4) .date,
.schedule-block:nth-child(4n + 4) .inner:before{
	border-color: #e6275a;
}

/* Backgroud */

.schedule-block:nth-child(4n + 1) .btn-box a{
	background-color:#ffc20b;
}

.schedule-block:nth-child(4n + 1) .btn-box a:hover{
	color:#ffc20b;
	border-radius:0px;
	background: #fff;
	border-color:#ffc20b;
}

.schedule-block:nth-child(4n + 2) .btn-box a{
	background-color: #40cbb4;
}

.schedule-block:nth-child(4n + 2) .btn-box a:hover{
	border-radius:0px;
	color: #fff;
	background:#fff;
	border-color: #40cbb4;
}





.schedule-block:nth-child(4n + 3) .btn-box a{
	background-color: #4c35a9;
}

.schedule-block:nth-child(4n + 3) .btn-box a:hover{
	border-radius:0px;
	color: #4c35a9;
	background:#fff;
	border-color: #4c35a9;
}



.schedule-block:nth-child(4n + 4) .btn-box a{
	background-color: #e6275a;
}

.schedule-block:nth-child(4n + 4) .btn-box a:hover{
	border-radius:0px;
	color: #e6275a;
	background:#fff;
	border-color: #e6275a;
}

/* color */

.schedule-section.style-three .schedule-block:nth-child(4n + 1) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 1) .date,
.schedule-block:nth-child(4n + 1) h4 a:hover{
	color: #ffc20b;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 2) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 2) .date,
.schedule-block:nth-child(4n + 2) h4 a:hover{
	color: #40cbb4;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 3) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 3) .date,
.schedule-block:nth-child(4n + 3) h4 a:hover{
	color: #4c35a9;
}

.schedule-section.style-three .schedule-block:nth-child(4n + 4) .date,
.schedule-section.style-two .schedule-block:nth-child(4n + 4) .date,
.schedule-block:nth-child(4n + 4) h4 a:hover{
	color: #e6275a;
}


/*** 

====================================================================
	schedule Section Style two
====================================================================

***/
.browwabg {
    position: relative;
    padding: 60px 0 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fffdf9;
    overflow: hidden;
}
div#myTabContent {
    margin-top: 39px;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 2).active {
    box-shadow: 0 0px 30px rgba(64, 203, 180, .30);
    border: 1px solid #40cbb4;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 3).active {
    box-shadow: 0 0px 30px rgba(76, 53, 169, .30);
    border: 1px solid #4c35a9;
}

.schedule-tabs .tab-buttons li:nth-child(4n + 4).active {
    box-shadow: 0 0px 30px rgba(230, 39, 90, .30);
    border: 1px solid #e6275a;
}

.eventDateArea .eventDateBox {
    background: #f8bc24;
    text-align: center;
    border-radius: 10px;
}
.eventDateArea span.bg-edpurple {
    color: #000;
    border-radius: 10px;
    background-color: #5b3aee;
    padding: 7px 30px;
    color: #fff;
    font-weight: 600;
}

.eventDateArea span {
    display: block;
    color: #000;
    font-weight: 600;
    line-height: 20px;
    padding: 10px 5px;
}
/* tab end */


section.photovideogallery {
    background: #f1f1f1;
}


/* gallery start */


/* -----------------------------------
      Gallery Section
--------------------------------------*/
.portfolio-section {
  padding: 50px 0;
  background-color: #000;
}
.portfolio-section h2 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}
.portfolio-menu {
  text-align: center;
}
.control {
  background: #000;
  color: #fff;
  padding: 5px 10px;
  border: 1px solid #343a40;
  border-radius: 3px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: all 05s ease;
  -moz-transition: all 05s ease;
  -ms-transition: all 05s ease;
  -o-transition: all 05s ease;
  transition: all 0.5s ease;
}
.control:hover {
  background: #343a40;
}
.mixitup-control-active {
  color: #fff;
  background: #343a40;
}
.fancybox-container button:focus {
  outline: 0;
  box-shadow: none;
}
.portfolio-item {
  padding-top: 30px;
}
.pd {
  padding: 0;
  padding: 10px;
}
.pd img {
  height: 205px;
  transition: all 0.5s;
}
.portfolio-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  text-align: center;
  visibility: hidden;
  transition: all 0.5s;
  transform: scale(0);
}
.portfolio-overlay p,
.portfolio-overlay a {
  position: relative;
  z-index: 4;
}
.portfolio-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  left: 10%;
  top: 10%;
  transition: 50ms height ease 150ms;
  z-index: 3;
}
.portfolio-overlay::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 0;
  position: absolute;
  right: 10%;
  bottom: 10%;
  transition: 100ms width ease 200ms;
  z-index: 3;
}
.portfolio-item:hover .portfolio-overlay::before {
  width: 80%;
  height: 80%;
  border-top: 2px solid #f1c536;
  border-right: 2px solid #f1c536;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.5s;
}
.portfolio-item:hover .portfolio-overlay::after {
  width: 80%;
  height: 80%;
  border-bottom: 2px solid #006697;
  border-left: 2px solid #006697;
  transition: width 0.1s ease 0.6s, height 0.1s ease 0.7s;
}
.portfolio-item li:hover .portfolio-overlay {
  visibility: visible;
  transform: scale(1);
}
.portfolio-overlay .category {
  margin-top: 70px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.portfolio-overlay .magnify-icon {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background: #006697;
  margin: 0 5px;
  cursor: pointer;
  display: inline-block;
  transition: all 0.25s;
  text-align: center;
}
.portfolio-overlay .magnify-icon:hover {
  background: #000;
}
.portfolio-overlay .magnify-icon p span i {
  font-size: 15px;
  color: #fff;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
    margin-top: 13px;
    float: left;
    margin-left: 13px;
}

li.mix {
    position: relative;
}

/*******Responsive media query******/

/* Extra small devices (portrait phones, less than 576px)*/

/* gallery end */

/* sahil */

.d-block{
display: block;
}

.d-flex{
  display: flex;
  }

.d-none{
  display: none;
  }


/* 
  header */
/* Header styling */
header {
  background-color: #004b8d; /* Dark Blue Background */
}

/* Icons and Text Colors */
header i {
  color: #ffc107; /* Yellow Icon Color */
}

header a {
  color: white; /* Text color */
  font-size: 11px; /* Small Text */
  font-weight: 500;
  text-transform: uppercase;
}

/* Dropdown Button */
.dropdown button {
  font-size: 11px;
  color: #212529; /* Dark text for dropdown */
}

.dropdown-menu {
  font-size: 0.875rem;
}

/* Social Icons and Close Button */
.bi-facebook {
  color: white;
}

.bi-record-circle {
  color: red; /* Close Icon Color */
}


.top-header{
  background-color: #0a457f;
color: white;
}

.skip-content, .screen-reader{
  padding-right: 20px;
  border-right: 1px solid rgba(233, 233, 233, 0.705);
}

.top-a {
  padding-right: 10px;
  font-weight: 500;
  font-size: 14px!important;
  color: rgb(255 255 255 / 77%);
  border-right: 1px solid #ffffff63;
}

/* bottom-header */

/* Main Header Styling */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}

/* Organization Name */
.main-header h5 {
  font-size: 1.5rem;
  color: #004b8d; /* Blue color */
}

.main-header p {
  font-size: 0.85rem;
  color:rgb(199 11 11) !important;
  text-align:center;
 /* Red color */
}

/* Logos */
.main-header img {
  max-height: 70px;
}

/* Navigation */
.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
}


.navbar-nav .nav-link:hover {
  color: #004b8d; /* Blue Hover Effect */
}

/* Bottom Red Bar */
.red-bar {
  background-color: #0a457f; /* Red color */
  height: 8px;
}


.main-header h5 {
  font-size: 1rem;
  color: rgb(23 59 206);
}

.btn{
  border-radius: 0px;
}

.logo-arrow{
  position: relative;
}

.logo-arrow::after {
  width: 100%;
  height: 20px;
  background-color: #afb0b3;
  position: absolute;
  bottom: -20px;
  content: '';
  left: 0;
  z-index: 2;
  clip-path: polygon(0% 0%, 100% 0%, 92% 100%, 9% 161%);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu {
  margin-top: 0; /* Align dropdown properly */
}

.navbar-nav .dropdown-menu {
  position: absolute;
}

.nav-item.dropdown:hover .dropdown-menu {
  border: none;
  display: block;
  border-radius: 0;
}

.dropdown-item{
  font-size: 12px;
  font-weight: 600;
}

.dropdown-item:hover {
  color: #ffffff;
  background-color: #0a457f;
}

header .navbar-nav{ background:#fff; padding:2px 10px; border-radius: 50px; position: relative; z-index: 999}

header .navbar-nav a.nav-link {padding: 5px 9px; border-radius: 50px;}
header .navbar-nav a.nav-link:hover,
header .navbar-nav a.nav-link.active {background: #ffc107; color: #000 !important;}

header .lineAnimPanel {
  position: absolute;
  right: 183px;
  width: 698px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

header .lineAnimPanel::before {
  content: attr(content);
  position: absolute;
  width: 620px;
  height: 45px;
  z-index: 1;
/*  background-color: #fff;*/
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

header .lineAnimPanel::after {
  content: "";
  width: 600px;
  height: 600px;
  position: absolute;
  border-radius: 50px;
  background: conic-gradient(
    #3a7cec 0%12.5%,
    #2ca24c 12.5%25%,
    #f1b500 25%37.5%,
    #e33e2b 37.5%50%,
    #3a7cec 50%62.5%,
    #2ca24c 62.5%75%,
    #f1b500 75%87.5%,
    #e33e2b 87.5%100%
  );
  animation: border-animation 5s linear infinite;
  -webkit-animation: border-animation 5s linear infinite;
}

@keyframes border-animation {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}


.aboutSection{ background:#ffffff ; padding:20px 0; border-top:5px solid #fffaec; text-align: center;}
.aboutSection h6 { text-align:center; display: inline-block; border-bottom: 5px solid #0a457f; position: relative; padding:10px 20px; font-size: 25px; border-radius:15px; font-weight:600; margin:auto; }
.aboutSection h6:after{ width:50px; height:5px; position:absolute; background:#f9c30b; left:50%; margin-left: -25px; bottom:-5px; content:''; }

section#main-awardss {
    background: #e3e3e3;
}

.paramsevamedal tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    font-size: 12px;
}

.cardabout .events-news ul {
    margin: 0;
    padding: 0;
}
.cardabout .events-news ul li {
    margin: 0;
    overflow: hidden;
    text-align: left;
    list-style-type: none;
}
.cardabout .events-news i.fa.fa-angle-right {
    float: left;
    color: red;
    margin: 4px 8px 0 0;
}
.cardabout .events-news ul li a {
    color: #222;
    display: flex;
    padding: 4px 10px;
    font-weight: 400;
    /* background: #f2f4f9; */
    margin-bottom: 2px;
    border-radius: 3px;
    font-size: 15px;
    border-bottom: 1px solid #ccc;
}
.scroll_newsab {
    border: 1px solid #ccc;
}
.cardabout .events-news ul li a:hover {background:#ced8ef; color:#0c3587;}
.cardabout .events-news dt {
    font-weight: 700; 
}
.whatisnewsabg{background:#0b457f;}
.whatisnewsabg h2{
	color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 4px 17px;
    font-size: 20px;
	margin-bottom: 0;
	}
	
.viewallabbg {
    width: 100%;
    display: flow-root;
    border: 1px solid #ccc;
    margin-bottom: 2px;
    padding-top: 3px;
    border-top: 3px solid #ccc;
    border-bottom: 0;
}
a.viewallab {
    float: right;
}
.donatebg {
    background: #a1c1e5;
    display: flex;
    justify-content: space-between;
    padding: 11px 11px;
    overflow: hidden;
}

.donatebg span {
    float: left;
}
h4.donatecausehead {
    background: #1167bd;
    color: #fff;
    float: right;
    padding: 15px 21px;
	margin-bottom: 0;
}
a.donatecause span img {
    width: 130px;
}
.whatisnewsabg.upcoming-ev{}
.whatisnewsabg.upcoming-ev h2 a{color:#fff; font-size: 24px;}
img.new-iconab {
    width: 31px;
    margin-top: 0px;
}

.helped-BROWWA {
    background: url(../images/asha-light.png) top no-repeat,linear-gradient(135deg, #bababa, transparent);
    background-size: cover;
   
}

.helped-BROWWA h3 {
   text-align: center;
    padding: 4px 17px;
    Background:#ed602f; 
}

.helped-BROWWA h3 a {
    color: #fff;
    font-weight: 600;
    font-size: 22px;
}
a.btnPs {
    width: 25px;
    height: 25px;
    line-height: 25px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    font-size: 11px;
    right: -10px;
    background: #008080;
    top: 10px;
    border: 1px solid #fff;
}

span.iconnewsaboout {
    margin: 5px 1px 0 0;
	font-size: 12px;
}

.controls {
    margin-top: 0px;
    display: flex;
    gap: 5px;
    justify-content: center;
	/* float: right; */
}

a#viewAll {
    border: navajowhite;
}
.row.browabout {
    margin-top: 18px;
}

.gallery-caption {
  margin-bottom: 0px;
  height: 51px;
  border-radius: 0px 0px 10px 10px;
  color: #fffffa;
  font-size: 15px;
  line-height: 20px;
  padding: 4px 16px;
  background-color: #985e1f;
}


.backhome-con .bi.bi-arrow-left{padding-right:2px; font-size:13px}
.backhome-con {
    float: right;
    position: absolute;
    right: 93px;
    padding: 4px 9px 4px 7px;
    height: auto;
    margin: 5px 0 0 0px;
    font-size: 14px;
    font-weight: 600;
    background: #000;
    border: 1px solid #999;
	
}

/* Browa CSS */
.searchmain {
    position: absolute;
    right: 0;
	z-index: 9;
}

#searchBox {
      display: none;
      margin-top: 56px;
    }
    #toggleButtonsearch {
      cursor: pointer;
      padding: 10px;
      color: white;
      border: none;
      border-radius: 5px;
	  position: absolute;
      right: 0;
	  top: 0px;
	  background: none;
	   content: "\f002"
	   
    }
    #toggleButtonsearch:hover {
      background-color: #0056b3;
    }
#searchBox button {
    padding: 4px 6px;
    border: none;
    margin: 3px -18px 0 -7px;
    font-size: 14px;
    border-radius: 0 4px 4px 0;
	background: #ffc107;
}
#searchBox input#searchInput {
    border-radius: 4px 4px 4px 4px;
    border: none;
    padding: 2px 10px 3px 8px;
	outline: 0;
}
.browa-searchmain .searchmain {
    position: absolute;
    right: 106px;
    z-index: 9;
    top: 0;
}
.browa-searchmain #searchBox {
    margin-top: 0;
	    margin-right: 50px;
}

#toggleButtonsearch{padding: 4px; border-radius: 50%;
    top: 4px;}
#toggleButtonsearch i {
    color: #fff;
	background: none !important;
	background-color:none !important;
}

.h-search-form.browa-searchtop {
      position: relative;
      padding: 3px;
      background: #1a83ed;
     text-align:center;
	 border-radius: 40px;
   }
   

.h-search-form.browa-searchtop input{
    width: 100%;
    padding: 3px 52px 3px 17px;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    position: relative;
    color: #000;
    outline: none;
      }
.h-search-form.browa-searchtop button{
  
    background: #1a83ed;
    top: 0px;
    border: none;
    position: absolute;
    right: 0px;
    top: 2px;
    padding: 8px 16px;
    border-radius: 0 30px 30px 0;
    z-index: 999;
    color: #fff;
   }
   
.h-search-form.browa-searchtop ::placeholder {
    color: #000 !important;
}  
   
.h-search-form.browa-searchtop button:hover{
      background: #175fa9;
   }

  
.h-search-form.browa-searchtop form {
    margin: 0;
} 

.menu-brwwa .dropdown-menu.show {
    display: block !important;
	border: none;
    border-radius: 0;
    padding-top: 0;
}

.menu-brwwa .nav-item.dropdown:hover .dropdown-menu{display: none;}
.logoarrow-borwwa{padding-left: 63px;}