header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  /* background: rgba(0, 0, 0, 0.8); */
  /* Background color */
  transition: all 0.3s ease-in-out;

  /* Normal padding */
}

/* Sticky effect */
/* header.scrolled {
  background: rgba(146, 140, 140, 0.95);

} */



@media (max-width: 768px) {

  .banner__slider {
    margin-top: 0px;
    /* Adjust accordingly */
  }
}


/* Navbar Styles */
.custom-navbar {
  background: rgba(0, 0, 0, 0.6);
  /* 25% opacity */
}

.custom-navbar .nav-link {
  color: white !important;
  font-weight: 500;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.custom-navbar .dropdown-menu {
padding:0px !important;
}
.custom-navbar .dropdown-menu li a  {
color:#FD7E14 !important;
}
.custom-navbar .nav-link.active {
  color: #FB923C !important;
}

.custom-navbar .navbar-nav .active > a,
.custom-navbar .navbar-nav .current-menu-item > a,
.custom-navbar .navbar-nav .current_page_item > a {
    color: #FB923C !important; /* Change this to your preferred active color */
 
}

/* Hover effect */
.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-item:hover > a {
    color: #ffaa00 !important; /* Change to your desired hover color */
  
}

/* Dropdown items */
.custom-navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #ffdd57; /* Change background on hover */
    color: #000 !important; /* Change text color on hover */
}

.custom-navbar .navbar-toggler {
  border: none;
}

.custom-navbar .navbar-toggler:focus {
  box-shadow: none;
}



/* Subscribe Button */
.subscribe-btn {
  background-color: #F37A14;
  color: white;
  border-radius: 60px;
  padding: 8px 20px;
  font-weight: 600;
}

.subscribe-btn:hover {
  background-color: #e96a10;
}

@media (min-width: 992px) {

  .slider,
  .slide {
    height: 100vh;
  }
}

.slide {
  position: relative;
}

.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 55%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}

.slide .slide__content--headings {
  color: #FFF;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: "Playball", cursive;
  font-size: 2.5rem;
}

.slide .slide__content--headings .title {
  font-size: 3.5rem;
}

.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}

.slider [data-animation-in] {
  opacity: 0;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  /* bottom: 25px; */
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: orange;
  border-radius: 100%;

}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
  padding: 7px;
}

.slick-dots li.slick-active button {
  outline: none !important;
  padding: 7px !important;
}

.simple-dots .slick-dots li {
  width: 4px;
  height: 40px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.simple-dots .slick-dots li.slick-active button {
  color: #ef7916;
  opacity: 0.75;
}

.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}

.stick-dots .slick-dots li button {
  position: relative;
  background-color: #ef7916;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  color: #ef7916;
  opacity: 0.75;
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}

/* /////////// IMAGE ZOOM /////////// */
@-webkit-keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1);
  }
}

.zoomInImage {
  -webkit-animation-name: zoomInImage;
  animation-name: zoomInImage;
}

@-webkit-keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.zoomOutImage {
  -webkit-animation-name: zoomOutImage;
  animation-name: zoomOutImage;
}

.slick-nav {
  --active: #f47a11;
  --border: #f47a11;
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}

.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}

.slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slick-nav i:before {
  transform: rotate(-40deg);
}

.slick-nav i:after {
  transform: rotate(40deg);
}

.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}

.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}






.partner-logo img {
  /* max-width: 200px; */
  height: auto;
  transition: transform 0.3s ease-in-out;
  /* width: 100%; */
 /* width: 200px;
  height: 200px;
  display: flex;
  align-items: center;*/
}

.imgpactstrories-blog .card {
  background-color: transparent;
  border-radius: 20px;
  height: 100%;
  max-height:470px;
}


.imgpactstrories-blog .card-img {
  border-radius: 20px;
  background-color: transparent !important;
}

.imgpactstrories-blog .card-img-overlay {
  top: 40%;
  background-color: rgba(0, 0, 0, 0.6);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white !important;
}

.Publications .card {
  border-radius: 20px;

  padding: 10px;
  text-align: center;
}

.Publications a {
  /*color: #FD7E14;*/
  color:#ffffff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
}

footer {
  background-color: #5F3009;
}

footer h5,
footer h6,
footer svg {
  color: white;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  transition: 0.3s;
  padding: 0px;

}


footer ul li a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
  font-size: 14px;
}

footer ul li a:hover {
  color: orange;
  padding-left: 5px;
}


/* .wrapper {
  padding: 70px 0;
} */

.center-slider .slick-slide {
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  opacity: 0.7;
}

.center-slider .slick-center {
  transform: scale(1.1);
  opacity: 1;
    border-radius: 10px;
}

.video-container {
  width: 100%;
  height: 250px;
  position: relative;
    border-radius: 10px;
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.slick-prev,
.slick-next {
  z-index: 5;
}

.slick-prev:before,
.slick-next:before {
  color: #000;
  font-size: 26px;
}

/*----------------------*/
.footer_title {
  font-size: 18px;
}

.bg_copyright {
  background-color: #391907;
}

@media (max-width: 768px) {
  .img_footer {
    width: 50% !important;
  }
}


/* Custom column width for 5 columns */
@media (min-width: 768px) {
  .col-md-2-4 {
    flex: 0 0 20%;
    /* 20% width for 5 columns */
    max-width: 20%;
  }
}

/* Container to maintain aspect ratio */
.image-container {
  width: 100%;
  /* padding-top: 100%;*/
  /* 1:1 aspect ratio (square) */
  position: relative;
  overflow: hidden;

}

/* Ensure images fit inside the container without stretching */
.image-container img {
    /*position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;*/
  /* Ensures the image fits without stretching */
  /* object-position: center;*/
  /* Centers the image */
}



/* scrolltotop */

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #391907;
  color: white;
  /* display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; */
  cursor: pointer;
  z-index: 1000;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); */
}

/* Circular Loader */
.progress-circle {
   position: fixed;
  bottom: 25px;
  right: 31px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: conic-gradient(#FD7E14 0%, #391907 0%); /* Default */
  /* display: none; */
  z-index: 9999;

}

.progress-circle svg {
  position: relative;
  left: 30%;
  top: 25%;
}

/* .slick-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slick-active {
  opacity: 1;
} */

/* .slick-slide {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slick-active {
  opacity: 1;
} */

.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.btn-style500 {
  border-color: #716eef;
  color: #716eef;
}

.bg_inner_banner {
  /* background-image: url(./img/inner_pages/bg_inner_banner.png); */
  background-image: url(../images/bg_inner_banner_1.png);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  min-height: 200px;
  /* Adjust height as needed */
  display: flex;
  margin-top: 6rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/*galllery css*/
.main_1 .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.main_1 .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.main_1 .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.main_1 .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 600px) {
  .main_1 .container {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}

/*innerpages*/
 .hero-section {
          
            color: white;
            padding: 240px 0;
            text-align: center;
        }
		
        .hero-section h1 {
            font-size: 2.5rem;
            font-weight: bold;
        }
		
		@media (max-width: 768px) {
   	
        .hero-section h1 {
            font-size: 1.5rem;
            font-weight: bold;
        }
}
		
        .content-section {
            padding: 50px 0;
        }
        .content-section h3 {
            color: #5F3009 !important;
			font-size:22px;
			font-weight:bold;
        }
		
		
		.breadcrumb-container {
    position: absolute;
    bottom:1px;

    background: white; /* White background */
    padding: 10px 10px 8px 10px;
    border-radius:0px;
	margin:0px auto;

    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #FD7E14; /* Bootstrap primary color */
	font-size:16px;
	font-weight:bold;
}

.breadcrumb-item.active {
    color: #000000; /* Bootstrap secondary color */
}

.letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/*contact form */


.contact-info h4
{
	color:#391907 !important
}
.contact-info i
{
	color:#FB923C !important
}
.contact-info h6
{
	color:#5b5b5b  !important
}
.case-page .single-slider {
    position: relative;
    transition: all 0.4s;
 
	  border-radius:20px;
	  margin-bottom:20px;
}
		.case-page .single-slider:hover {
    transform: translateY(-10px);
	  border-radius:20px;
}

.case-page .single-slider .image {
  border-radius:8px;
    overflow: hidden;
	
}
.case-page .single-slider:hover .image img {
    transform: rotate(2deg) scale(1.1);
    transition: all 0.4s;
	  border-radius:8px;
}

.case-page .single-slider .heading-area {
    border-radius:8px;
    background: #FFF;
    position: absolute;
    bottom: 30px;
    width:90%;
	  border-radius:8px;
	  padding:20px;
	  margin:0px 10px;
}
.case-page .single-slider .heading-area p {
    color: var(--SEO-Marketing-Paragraph-Color, #5D6369);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    text-transform: uppercase;
    padding-bottom: 10px;
	text-decoration:none;
	  border-radius:8px;
}

.case-page .single-slider .heading-area h4 a {
    display: inline-block;
    color: var(--SEO-Marketing-Text-Color, #0B0314);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
	text-decoration:none;
}
.case-page .single-slider .heading-area .arrow-right {
    display: inline-block;
    height: 48px;
    width: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    right: -20px;
    transform: rotate(360deg);
    background: var(--SEO-Marketing-Gradient-Color, linear-gradient(90deg, #FB3F52 0%, #FA7D3C 100%));
}

.case-page .single-slider .image img {
    width: 100%;
    transition: all 0.4s;
}

.work2 .work-box {
    margin-top: 30px;
    position: relative;
    z-index: 4;
    display: flex
;
    align-items: start;
    transition: all 0.4s;
}
.work2 .work-box::before {
    content: "";
    position: absolute;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #F6F7FF;
    z-index: 1;
    transition: all 0.4s;
}
.work2 .work-box .icon-area {
    position: relative;
    z-index: 2;
    width: 100px;
}
.work2 .work-box .icon-area .icon {
    position: relative;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
}

.work2 .work-box .icon-area .icon::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
    z-index: 2;
    border-radius: 50%;
}
.work2 .work-box .icon-area .icon img {
    position: relative;
    z-index: 3;
}
.work2 .work-box .icon-area .icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #646BF9;
    z-index: 2;
    border-radius: 50%;
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0.4);
}

.work2 .work-box .icon-area .icon-span {
    height: 32px;
    width: 32px;
    text-align: center;
    line-height: 32px;
    position: absolute;
    top: -3px;
    right: -3px;
}
.work2 .work-box .icon-area .icon-span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: var(--SEO-Marketing-New, linear-gradient(90deg, #915f43 0%, #49A6FF 100%));
    z-index: 2;
    border-radius: 50%;
    transition: all 0.4s;
}
.work2 .work-box .icon-area .icon-span p {
    position: relative;
    z-index: 4;
    color: #FFF;
    font-style: normal;
    font-weight: 600;
    transition: all 0.4s;
}
.work2 .work-box .icon-area .icon-span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 2;
    border-radius: 50%;
    transition: all 0.4s;
    opacity: 0;
    transform: scale(0.4);
}
.work2 .work-box .heading1 {
    position: relative;
    z-index: 3;
}
.heading1 h4 a {
    color: var(--SEO-Marketing-Text-Color, #0B0314);
    font-style: normal;
    line-height: 20px;
    display: inline-block;
    transition: all 0.4s;
	text-decoration:none;
}
.heading1 p {
    color: var(--SEO-Marketing-Text-Color, #3C3543);
    font-style: normal;
    line-height: 28px;
    transition: all 0.4s;
}
.work2 .work-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    /* background: var(--SEO-Marketing-New, linear-gradient(90deg, #FD7E14 0%, #915f43 100%));*/
    z-index: 1;
    transition: all 0.4s;
    transform: scale(0.4);
    opacity: 0;
}
.work2 .work-box:hover {
    transition: all 0.4s;
    transform: translateY(-10px);
}

.work2 .work-box:hover::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
   /* background: var(--SEO-Marketing-New, linear-gradient(90deg, #FD7E14   0%, #FD7E14  100%)); */
    z-index: 1;
    transition: all 0.4s;
    transform: scale(1);
    opacity: 1;
}

.service2 .service2-all-tabs .tabs-buttons .nav-item button {
    width: 232px;
    padding: 0;
    margin: 0px 18px;
}

.service2 .service2-all-tabs .tabs-buttons .nav-item button .icon {
    position: relative;
    z-index: 99;
    height: 70px;
    width: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    display: inline-block;
    background: var(--SEO-Marketing-New, linear-gradient(90deg, #3B32F6 0%, #49A6FF 100%));
}
.service2 .service2-all-tabs .tabs-buttons .nav-item button .text-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 55px 0px 24px 0px;
    position: relative;
    width: 100%;
    margin-top: -32px;
    z-index: 1;
    display: inline-block;
}

.service2 .service2-all-tabs .tabs-buttons .nav-item button .text-box span {
    color: var(--SEO-Marketing-Text-Color, #0B0314);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: inline-block;
}

  #tooltip {
                background:#fbfbfb;
                border: 1px solid rgb(202, 202, 202);
                color: black;
                border-radius: 5px;
                padding: 5px;
                white-space: pre-wrap;
                }
                path:hover{
                    fill:#ffcc66;
                    cursor: pointer;
                }