/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: #c10109;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: darkgoldenrod;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(162, 72, 87, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: #c10109;
    border: 10px solid #c10109;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/bgimg.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #c10109;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: #c10109;
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    /*background: rgba(162, 72, 87, .6);*/
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
}

.team-item .team-text {
    position: absolute;
    width: calc(100% - 45px);
    left: -100%;
    bottom: 45px;
    padding: 1.5rem;
    background: #FFFFFF;
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}

.team-item .team-img .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.team-item:hover .team-img .team-social {
    transition-delay: .3s;
    opacity: 1;
}


/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: gold;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #c10109;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: darkgoldenrod;
}

.bannerh2
{
	font-size:70px;
	color:gold !important;
}
.bannerp
{
	font-size:25px;
}
.footerh4
{
	color:gold !important;
}
.counterh1
{
	color:#c10109 !important;
}
.counterspan
{
	color:#c10109 !important;
}
.portfolio-innertext
{
	color:gold;
	text-align:center;
	font-weight:700;
}
.nav-pills
{
	background:#c10109;
}
.tab
{
	border:2px solid #c10109;
	padding:0px !important;
}
.tab-pane a
{
	color:#c10109;
}
.tab-pane a:hover
{
	color:darkgoldenrod;
}
.tabli
{
	background:#c10109;
	color:white;
	font-weight:bold;
}
.nav-pills .nav-link
{
	color: white;
    background-color: #c10109;
	font-weight:bold;
}
.nav-pills .nav-link.active
{
	color: gold;
    background-color: #c10109;
	font-weight:bold;
}
.togglediv
{
	float:right;
}

/* About Us Page */
.title-section {
      text-align: center;
      padding: 60px 20px;
      background-color: #c10109;
      color: white;
      border-radius: 10px;
      margin-bottom: 40px;
}
.title-section h1 
{
      font-size: 3.5rem;
      margin-bottom: 20px;
      text-transform: uppercase;
	  color: white;
}
.promotors-title
{
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
      color: #333;
}

.about-us-container 
{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 40px;
      margin-bottom: 30px;
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
}

.about-us-container:hover 
{
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-us-container img 
{
      width: 30%;
      border-radius: 15%;
      border: 5px solid #ddd;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, border 0.3s ease;
}

.about-us-container img:hover 
{
      transform: scale(1.1);
      border-color: #c10109;
}

.about-us-text 
{
      width: 65%;
      padding-left: 30px;
      border: 3px solid #ddd;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      background-color: #fff;
}

.about-us-text h2 
{
      font-size: 1.8rem;
      color: #333;
      margin-bottom: 15px;
      font-weight: 700;
}

.about-us-text p 
{
      font-size: 1rem;
      color: #555;
      margin-bottom: 15px;
}

.about-us-text ul 
{
      list-style-type: none;
      padding-left: 0;
}

.about-us-text ul li 
{
      font-size: 1rem;
      color: #555;
      margin-bottom: 10px;
}

.about-us-container-reverse 
{
      flex-direction: row-reverse;
} 

@media (max-width: 768px) {
      .about-us-container {
        flex-direction: column;
        text-align: center;
      }

      .about-us-container img {
        width: 60%;
        margin-bottom: 20px;
      }

      .about-us-text {
        width: 100%;
        padding-left: 0;
      }
}   
/* About Us Page End */
.alink
{
	color:#c10109;
	font-weight:bold;
}
.alink:hover
{
	color:darkgoldenrod;
	font-weight:bold;
}
.regdiv
{
	border: 4px solid #c10109;
	border-top:0px !important;
	border-radius:0px 0px 10px 10px !important;
}
.bg-faint
{
	border-radius:5px !important;
	border:1px solid #ccc !important;
}
.regHeadingDiv
{
	background:maroon !important;
	color:white;
	text-align:center;
	border-radius:10px 10px 0px 0px;
	padding:0.5rem;
}
.regHeading
{
	color:gold !important;
	font-size:30px;
	font-weight:bold;
	text-align:center;
}
.regsubHeading
{
	color:palegoldenrod;
	font-weight:bold;
	font-size:20px;
}
.rblCss
{
	padding-top:15px !important;
}
.rblCss label
{
    margin-left:0.5rem !important;
    margin-right:0.5rem !important;
}
.rblCss input
{
    margin-right:0.2rem !important;
}
.form-control:disabled, .form-control:read-only
{
	background:none !important;
}
.fileCss
{
	padding-top:2rem !important;
}
.refCss
{
	font-weight:bold;
	color:black;
	margin-top:0px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.5);
  padding: 20px 0 30px 0;
}

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

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

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

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

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

  100% {
    transform: rotate(360deg);
  }
}

/* Sonar Invite Css */

 .invite-block {
      display: grid;
      grid-template-columns: 1fr 1.7fr 0.7fr;
      gap: 32px;
      max-width: 1100px;
      width: 100%;
      background: #770000;
      border-radius: 20px;
      padding: 28px 32px;
      box-shadow: 0 20px 40px rgba(40, 65, 120, 0.12);
}

/* Left Invite Box */
    .invite-box {
      background: linear-gradient(145deg, #e0e7ff, #c5d1ff);
      border-radius: 20px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-shadow: 8px 8px 14px #b8c5f7, -8px -8px 14px#ffb30f;
    }

    .invite-box h2 {
    font-weight: 700;
    font-size: 29px;
    color: #662222;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.02em;
    font-family: serif;
    text-align: center;
    margin-left: 13px;
    margin-top: 5px;
}

    .invite-box h2::before {
      content: " ";
      font-size: 28px;
    }

    .primary-member {
      font-weight: 500;
      font-size: 14px;
      color: rgb(0, 0, 0);
      margin-top: 0;
      margin-bottom: 24px;
      letter-spacing: 0.02em;
      /* font-style: italic; */
      text-transform: none;
      opacity: 0.8;
      user-select: none;
    }

    .buttons {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .buttons .btncls {
      background: linear-gradient(135deg,#cbb100, #e20022);
      border: none;
      border-radius: 20px;
      padding: 14px 26px;
      font-size: 15px;
      font-weight: 700;
      color: white;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(122, 70, 223, 0.5);
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: center;
      transition: all 0.3s ease;
      user-select: none;
      text-shadow: 0 1px 2px rgba(0,0,0,0.15);
    }

    .buttons .btncls:hover {
      background: linear-gradient(135deg, #e20022,#b1df46);
      box-shadow: 0 14px 28px rgba(122, 70, 223, 0.75);
      transform: translateY(-3px);
    }

    .buttons .btncls:nth-child(1)::before {
      content: "📋";
    }

    .buttons .btncls:nth-child(2)::before {
      content: "📲";
    }

    .invite-info {
      margin-top: 18px;
      font-size: 14px;
      color: #9c0101cc;
      font-weight: 600;
      line-height: 1.4;
      user-select: none;
      /* font-style: italic; */
      letter-spacing: 0.02em;
      text-align: center;
    }

    /* Middle Unity Card */
    .unity-cards {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .invitecard {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 22px rgba(122, 70, 223, 0.12);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 100%;
      max-width: 500px;
       box-shadow: 8px 8px 14px #ffb30f, -8px -8px 14px  #b8c5f7;
    }

    .invitecard:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 48px rgba(122, 70, 223, 0.3);
    }

    .invitecard h3 {
      background: linear-gradient(135deg, #cbb100,#e20022);
      color: white;
      font-size: 25px;
      font-weight: 800;
      padding: 28px 100px;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 16px;
      letter-spacing: 0.04em;
      text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
      border-bottom: 4px solid #df4646;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
      text-transform: uppercase;
      box-shadow: 0 4px 15px rgba(122, 70, 223, 0.5);
      transition: background 0.3s ease;
      cursor: default;
    }

    .invitecard h3::after {
      content: "";
      font-size: 24px;
      transform: translateY(-2px);
      transition: transform 0.3s ease;
    }

    .invitecard:hover h3 {
      background: linear-gradient(135deg,#e20022,#b1df46 );
      box-shadow: 0 6px 20px rgba(223, 70, 70, 0.7);
    }

    .invitecard:hover h3::after {
      transform: translate(6px, -4px);
    }

    .invitecard img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      filter: brightness(0.97);
      transition: 0.3s ease;
    }

    .invitecard img:hover {
      filter: brightness(1);
      transform: scale(1.03);
      transition: 0.3s ease;
    }

   .invitecard p {
    padding: 22px 32px 12px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #6f3e3e;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: -22px;
    margin-left: 4px;
}

    .invitecard p::before {
      content: "";
      flex-shrink: 0;
    }

    .read-more {
      margin-left: 300px;
      font-weight: 700;
      color: #5060f7;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 15px;
      user-select: none;
      transition: color 0.3s ease;
      margin-top: -10px;
    }
    .read-more:hover {
      color: #df4646;
      text-decoration: underline;
    }
    .read-more svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
      transition: transform 0.3s ease;
    }
    .read-more:hover svg {
      transform: translateX(4px);
    }

    /* Right sidebar with links */
    .right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 60px 11px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 22px rgba(122, 70, 223, 0.12);
    max-height: fit-content;
    align-self: start;
    box-shadow: 8px 8px 14px #b8c5f7, -8px -8px 14px #ffb30f;
    text-align: center;
}
    .right-sidebar h4 {
    margin: 0 0 12px 0;
    font-weight: 700;
    font-size: 25px;
    color: #9a0000;
    border-bottom: 2px solid #baa900;
    padding-bottom: 4px;
    text-transform: uppercase;
    user-select: none;
    letter-spacing: 6px;
    text-align: center;
}

.right-sidebar a {
      font-weight: 600;
      font-size: 13px;
      color: #9c0101;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 12px;
      transition: background 0.3s ease, color 0.3s ease;
      user-select: none;
}

.right-sidebar a:hover {
      background: #df4646;
      color: white;
}

 @media (max-width: 600px) {
	  .invite-block {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 16px 12px;
		max-width: 100%;
	  }
     .invite-box p {
        font-size: 14px;
        margin: 4px 0;
        margin-top: 16px;
    }

   .invite-box h2 {
        font-size: 28px;
        margin-left: 39px;
        margin-top: -20px;
        margin-bottom: -4px;
    }

  .invite-box p {
    font-size: 13px;
    margin: 4px 0;
  }

  .buttons {
    width: 100%;
    align-items: center;
  }

  .buttons button {
    width: 69%;
    font-size: 14px;
    padding: 12px;
  }

  .unity-cards {
    padding: 0;
    margin: 0 auto;
  }

     .invitecard h3 {
        font-size: 31px;
        padding: 20px;
        text-align: center;
        margin-bottom: 11px;
    }

  .invitecard p {
    font-size: 14px;
    padding: 16px;
    text-align: center;
    margin-left: 17px !important;
  }

  .read-more {
    margin: 10px auto 0 auto;
    font-size: 14px;
  }

  .right-sidebar {
    display: flex;
    flex-direction: row;
    gap: 12px;
    padding: 10px 8px;
    background: transparent;
    box-shadow: none;
    max-height: none;
    overflow-x: auto;
    border-radius: 0;
    margin-top: -20px;
    align-self: stretch;
  }

  .right-sidebar h4 {
    display: none;
  }

  .right-sidebar a {
    white-space: nowrap;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 16px;
    background: #5060f7;
    color: white;
    box-shadow: 0 3px 8px rgba(80, 96, 247, 0.7);
  }

  .right-sidebar a:hover {
    background: #df4646;
    color: white;
  }
}

/* End Sonar Invite Css*/

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        