.no-scroll {
  overflow: hidden;
}
.bad-request,.public-error-notice{
    color:red;
    text-align:center;
    margin-bottom:20px;
}
.success-message{
    color:green;
      text-align:center;
    margin-bottom:20px;
}
.section-padding {
  padding: 40px 0;
}
.section-title {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 40px;
}
.section-title h3 {
  text-align: center;
  font-weight: bold;
  color: #fff;
}
.section-title .heading-divider {
  display: inline-block;
  position: relative;
  height: 4px;
  margin: 0 auto;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #fff;
  width: 90px;
  overflow: hidden;
}
.section-title .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #157fff;
  -webkit-animation: 5s linear infinite heading-move;
  animation: 5s linear infinite heading-move;
}
@-webkit-keyframes heading-move {
  0%,
  100% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
}
@keyframes heading-move {
  0%,
  100% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(85px);
  }
}
/*modal*/

/* modal s*/
.customModalContainer {
  position: fixed;
  height: 100vh;
  display: flex;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  align-items: center;
  z-index: 1000;
  padding: 50px 10px;
  background-color: rgba(0, 0, 0, 0.8);
  inset: 0;
  justify-content: center;
  transition: 0.3s ease-in-out;
}
.customModalContainer.show {
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
}
.customModal {
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #ddd;
  width: 100%;
  background-color: #fff;
}

.customModalHeader {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
}
.customModalHeader h4 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}
.customModalHeader button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.customModalHeader button svg {
  width: 16px;
  height: 16px;
  fill: #4e4e4e;
}
.customModalHeader button:hover svg {
  fill: black;
}
.custommodal-body {
  overflow-y: auto;
  padding: 20px;
  max-height: 350px;
}
.modal_wrapper article:not(:last-child) {
  margin-bottom: 20px;
}
.modal_wrapper article button {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0966c2;
  transition: 0.3s ease-in-out;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  color: #ffff;
  font-weight: bold;
}
.modal_wrapper article button:hover {
  background: #002952;
}
.modal_wrapper article h6 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.modal_wrapper article label {
  width: 100%;
  position: relative;

  display: flex;
  flex-direction: column;
}
.inrement_label {
  display: flex !important;
  align-items: center;
  flex-direction: unset !important;
  gap: 10px;
}
.inrement_label input { 
    width: 70px;
    text-align: center;
    height: 50px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.inrement_label button {
  width: unset !important;
  height: unset !important;
  border: none;
  cursor: pointer;
  color: #000 !important;
  background: transparent !important;
}
.textare_label textarea {
  height: 150px;
  resize: none;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  border: 1px solid #ddd;
  outline: 0;
}
.only_label b{
    margin-bottom:10px;
    color:red;
}
.only_label input {
  min-height: 30px;
  padding: 10px;
  width: 100%;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 10px;
}
.image_upload {
  height: 100px;
  border: 1px dashed #ddd;
  border-radius: 10px;
  padding: 20px;
}
.image_upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.image_upload span {
  text-align: center;
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
}
.image_upload span:nth-child(2){
  margin-top: 5px;
  display: inline-block;
  color: rgba(46, 46, 46, 0.4) !important;
}
/*modal*/

/*modal*/
/* header */
header {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 70px;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 99;
}
header.header_sticky {
  position: fixed;
  top: 0;
  left: 0;
  background:#000;
  animation: slideDown 0.5s ease-in-out;
  box-shadow: 0px 0px 10px rgba(42, 73, 151, 0.15);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_wrapper .nav_left a {
  display: block;
  width: 100%;
  height: 100%;
}
.header_wrapper .nav_left a img {
  max-width: 120px;
  height: auto;
}
.header_wrapper .nav_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav_right_list {
  display: none;
  align-items: center;
}
.nav_right_list li {
  padding: 0 20px;
}
.nav_right_list li a {
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.nav_right_list li a:hover {
  color: #157fff;
}
.language{
    display:flex;
    align-items:center;
    gap:10px;
}
.language a {
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 4px;
  transition: 0.3s ease-in-out;
}
.language a.active{
     background: #fff;
  color: #0000FF;
}
.language a:hover {
  background: #fff;
  color: #157fff;
}
/* hamburger */
.hamburger_area {
  display: flex;
  margin-left: 10px;
  align-items: center;
}
.hamburger-icon {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  border: 0;
  outline: 0;
  row-gap: 8px;
  background-color: transparent;
}

.bar-1,
.bar-2,
.bar-3 {
  width: 100%;
  background: #fff;
  height: 2px;
  border-radius: 1px;
  transition: 0.5s;
}
.hamburger-icon .bar-2 {
  width: 50%;
}

.change .bar-1 {
  transform: rotate(-45deg) translate(-14px, 6px);
}

.change .bar-2 {
  opacity: 0;
}

.change .bar-3 {
  width: 100% !important;
  transform: rotate(45deg) translate(-6px, -1px);
}

/* all-sidebar */
#mobile-navbar {
  position: absolute;
  top: 65px;
  width: 100%;
  background-color: #000000bd;
  padding: 30px 0;
  left: 0;
  z-index: 88;
  right: 0;
  display: none;
  max-height: 420px;
  overflow-y: scroll;
}

.overlay {
  display: none;
  transition: 0.4s;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 65px;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
}
.overlay.active {
  display: block;
}

.mobile-navbar-list {
  padding: 0;
}

.mobile-navbar-list li {
  padding: 10px;
}

.mobile-navbar-list li a {
  color: #fff;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  .hamburger_area {
    display: none;
  }
  .nav_right_list {
    display: flex;
  }
}
/* header end */
/* hero section */

.hero_section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero_section img {
  position: absolute;
  inset: 0;
  width: 100%;
  object-fit: cover;
  z-index: 1;
  height: 100%;
}
.hero_section_content {
  position: relative;
  z-index: 3;
}
.hero_section_content h1 {
  line-height: 1;
  font-size: 30px;
  width:100%;
}
.modal_price_calc {
  margin-top: 40px;
}
.modal_price_calc_about {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_price_calc button {
  background-color: #0000FF;
  padding: 10px;
  color: #fff;
  max-width: 300px;
  font-size: 15px;
  min-height: 40px;
  text-transform: capitalize;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 30px;
  border: 2px dashed #0000FF;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  transition: 0.4s;
}

.modal_price_calc button:hover {
  transition: 0.4s;
  border: 2px dashed #157fff;
  background-color: #fff;
  color: #157fff;
}

.modal_price_calc button:active {
  background-color: #3f88e0;
}
@media screen and (min-width: 992px) {
    .hero_section_content h1{
        width:50%;
    }
}

/* hero section end */

/* about section  start*/
.about_section .row {
  row-gap: 20px;
}
.about_video {
  margin-top: 50px;
}
.about_card {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  justify-content: center;
  align-items: center;
}
.about_card img {
  width: 82px;
  display: block;
  margin: 0 auto;
}
.about_card h4 {
  text-align: center;
  min-height: 90px;
  display: flex;
  align-items: center;
}
/* about section  end*/

/* static part area start */
.static_sections {
  background: #fff;
}
.static_part_area:not(:last-child) {
  margin-bottom: 40px;
}
.static_part_area .row {
  row-gap: 20px;
  align-items: center;
}
.static_part_area article h4 {
  color: #000;
  font-weight: bold;
  margin-bottom: 20px;
}
.static_part_area article p {
  hyphens: auto;
  color: #000000;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 400;
}
.static_part_area figure img {
  max-height: 300px;

  height: 100%;
  width: 100%;
}
/* static part area end */

/* decision section */
.decision_section .row {
  row-gap: 20px;
  justify-content: center;
}
.decision_card {
  position: relative;
  height: 365px;
  display: flex;
  align-items: flex-start;
  border-radius: 35px;
  overflow: hidden;
}
.decision_card img {
  inset: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.decision_card article {
  position: relative;
  padding: 20px 10px;
  text-align: center;
  width: 100%;
}
.decision_section button {
  display: block;
  max-width: 100% !important;
  width: 100%;
}
.send_button {
  margin-top: 20px;
}
.send_button a {
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 15px;
  min-height: 40px;
  background: transparent;
  color: #fff;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
}
.send_button a:hover {
  background: #fff;
  color: #000;
}

/* partnors_section */
.partnors_section {
  background: #fff;
}
.partnors_section .section-title h3 {
  color: #000;
}
.partnors_section .heading-divider {
  background: #000;
}
.partnors_card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:#f9f9f9;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 20px;
}

.partnors_card img {
  width: 100%;
  transition: all 500ms ease;
  display: inline-block;
  object-fit:cover;
  max-width: 100%;
  position: absolute;
  inset: 0;
  height: 100%;
}
.partnors_card article {
  text-align: center;
  display: flex;
  background: #00000046;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  transform: scale(0, 0);
  padding-left: 15px;
  z-index: 2;
  padding-right: 15px;
  width: 100%;
  transition: all 500ms ease;
}
.partnors_card article h4 {
  display: block;
  line-height: 30px;
  color: #fff;
  font-weight: 500;
  transition: all 600ms ease;
}
.partnors_card:hover .other_head{
    opacity:0;
    visibility:hidden;
}
.other_head {
    position:absolute;
    bottom:0;
    z-index:2;
    padding:10px;
    transition:.3s ease-in-out;
    opacity:1;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    visibility:visible;
    overflow:hidden;
}
.other_head h6{
    font-size:15px;
    color:#fff;
    text-align:center;
    line-height:1.2;
}
.partnors_card ul {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  bottom: 0;
  opacity:0;
  visibility:hidden;
  overflow:hidden;
  z-index: 4;
  transition: all 500ms ease;
}

.partnors_card ul li {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 60px;
  background: #fff;
  text-align: center;
  font-size: 18px;
  color: #a7a7a7;
}
.partnors_card ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
 
.partnors_card ul li a {
  color: #000;
}
.partnors_card:hover ul {
  opacity:1;
  visibility:visible;
}
.partnors_card:hover figure img {
  opacity: 0.35;
  transform: scale(1.05);
}
.partnors_card:hover article {
  transform: scale(1, 1);
}

/* faq section start */
.question_section .row {
  justify-content: center;
}
.accrodion {
  background: #242424;
}

.accrodion:not(:last-child) {
  margin-bottom: 10px;
}

.accrodion.active .accrodion-title:after {
  content: "-";
  font-size: 25px;
}

.accrodion .accrodion-title {
  cursor: pointer;
  border: 1px solid #242424;
  background: #242424;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding: 20px 10px;
  position: relative;
}

.accrodion .accrodion-title:after {
  display: flex;
  align-items: center;
  justify-content: center;
  content: "+";
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  color: #fff;
  background: #303030;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  font-size: 20px;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 48px;
}

.accrodion .accrodion-title h4 {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}

.accrodion .accrodion-content {
  padding: 20px;
}
.accrodion .accrodion-content p {
  color: #fff;
  line-height: 1.4;
}

/* faq section end */

/*  footer start*/
footer .footer-head {
  padding: 40px 0;
  border-top: 1px solid #242424;
}
footer .footer-head .row {
  row-gap: 20px;
}
.footer_item-first{
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.footer_item figure {
  margin-bottom: 30px;
}
.footer_item figure a {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.footer_item figure img {
  max-width: 150px;
  width: 100%;
  height: auto;
}
.footer_item h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
}
.footer_list li:not(:last-child) {
  margin-bottom: 15px;
}
.footer_list li {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer_list li a,
.footer_list li span {
  color: #fff;
  font-weight: 400;
  line-height: 1.2;
  transition: 0.3s ease-in-out;
}
.footer_list li a:hover,
.footer_list li span:hover {
  color: #157fff;
}
.footer_social_list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer_social_list li {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #242424;
  transition: background 0.3s ease-in-out;
}
.footer_social_list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.footer_social_list li a i {
  color: #f4f4f4;
  font-size: 20px;
  text-shadow: 1px 1px #080808;
  transition: all 0.3s ease 1s;
}

.footer_social_list li:nth-child(1):hover {
  background-color: #3b5998;
}

.footer_social_list li:nth-child(2):hover {
  background-color: #f62403;
  background: -moz-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
}

.footer_social_list li:nth-child(3):hover {
  background-color: #0966c2;
}

.footer_social_list li:nth-child(4):hover {
  background-color: #00aced;
}

.footer_social_list li:nth-child(5):hover {
  background-color: #f70100;
}

.footer_bottom {
  border-top: 1px solid #444444;
  text-align: center;
  padding: 25px 0;
}
.footer_bottom p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  line-height: 1.2;
  gap: 10px;
}
.footer_bottom a {
  color: #fad110;
}
.footer_addition_wrapper{
    display:flex;
    flex-direction:column;
}
.footer_addition_item{
   display:flex;
    flex-direction:column;
    row-gap:10px;
        margin-bottom:20px;
}
.footer_list li{
    margin-bottom:10px;
}
.footer_addition_item h4{
    font-size:16px;
    color:#fff;
}
@media screen and (min-width: 992px) {
  .footer_item h3 {
    margin-bottom: 30px;
  }
}
/*  footer end*/


.own_swiper_nav{
    display:flex;
    align-items:center;
    gap:10px;
    justify-content:center;
    margin-top:20px;
    width:100%;
}
.own_swiper_nav button{
    width:50px;
    height:50px;
    border:none;
    border-radius:20px;
    background:#000;
    outline:none;
    cursor:pointer;
    color:#fff; 
    transition:.3s ease-in-out;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.own_swiper_nav button:hover{
    background:rgba(0,0,0,0.5);
}
.own_swiper_nav button.swiper-button-disabled{
    background:rgba(0,0,0,0.5);
}


/*blog title*/
.blog_section{
    background:#fff;
}
.blog_section h3{
    color:#000;
}
.blog_section .heading-divider{
    background:#000;
}
.blog_card{
    transition:.3s ease-in-out;
}
.blog_card figure img{
    height:200px;
    width:100%;
}
.blog_card ul{
    display:flex;
    align-items:center;
    margin:10px 0;
    justify-content:space-between;
}
.blog_card ul li h6{
    width:100%;
    min-height:30px;
    padding:0 10px;
    display:flex;
    align-items:center;
    border-radius:10px;
    justify-content:center;
    background:#0000FF;
    color:#fff;
}
.blog_card ul li span{
    color:#000;
}

.blog_card h4 a{
    display:block;
    width:100%;
    height:100%;
    color:#000;
    font-size:18px;
    line-height:1.2;
}
.blogs_content_area figure {
    margin-bottom:20px;
}
.blogs_content_area figure img{
    width:100%;
    height:auto;
    border-radius:10px;
}
.blogs_content_area article {
    color:#fff;
    font-size:16px;
    hypens:auto;
    text-align:justify;
    line-height:1.3;
}

.blogs_content_area article h2,.blogs_content_area article h3,.blogs_content_area article h4, .blogs_content_area article h5, .blogs_content_area article h6{
    font-size:20px;
    margin:10px 0;
}
.blog_full h3{
    font-size:20px;
}
/*breadcrumbs*/
.breadcrumbs_section{
    margin-top:70px; 
    padding:40px 0;
    background:#282727;
}
.breadcrumbs_section a{
    color:#fff;
}
.breadcrumbs_section a span{
    opacity:.8;
    color:currentColor;
}

.row{
    row-gap:20px;
}
.blog_inside  .blog_card h4 a{
    color:#fff;
}
.blog_inside  .blog_card ul li span{
    color:#fff;
}


/*recc*/

 .reccomendation_section{
     padding:60px 0;
     background:#f8f8f8;
 }
.reccomendation_section article {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 30px;
}
.reccomendation_section article strong {
  font-size: 40px;
  color: #0f172a !important;
  text-align:center;
  display:block;
  font-weight: bold;
}
.reccomendation_section article p {
  color: #64748b !important;
  font-size: 16px;
}
.reccomendationSlide .swiper-wrapper {
  padding: 20px 0;
}

.pdf-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display:block;
  border: 1px solid #f9f9f9;
  transition: 0.3s ease-in-out;
}
.pdf-card .main_link{
    position:absolute;
    display:block;
    opacity:0;
    width:100%;
    height:100%;
    inset:0;
}
.pdf-card .secondary_link{
    display:none;
}
.pdf-card:hover {
  transform: translateY(-4px);
}

/* ── BADGE ── */
.pdf-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #1a1a1a;
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}

/* ── THUMBNAIL ── */
.pdf-thumbnail {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #eeecea;
}
.pdf-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: grayscale(15%);
}
.pdf-card:hover .pdf-thumbnail img {
  transform: scale(1.04);
}

/* thin colour strip at bottom of image */
.pdf-thumbnail::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #0000ff;
}

/* ── INFO ── */
.pdf-info {
  padding: 22px 20px 20px;
  border-top: none;
}

.pdf-info h3 {
  font-family: "DM Serif Display", serif;
  font-size: 17px;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 8px;
}

.pdf-info p {
  font-size: 12.5px;
  color: #888;
  line-height: 1.65;
  font-weight: 300;
  display: -webkit-box;
    -webkit-line-clamp: 4;
    min-height: 40px;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  margin-bottom: 20px;
}

/* ── BUTTON ── */
.view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 2px;
  transition:
    color 0.2s,
    border-color 0.2s,
    gap 0.2s;
}
.view-btn:hover {
  color: #0000ff;
  border-color: #0000ff;
  gap: 12px;
}

/* arrow — pure CSS, no icon lib needed */
.view-btn::after {
  content: "→";
  font-size: 13px;
}
