
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat";
}
body, html {
  scroll-behavior: smooth;
  --primaryClr:#ff4400;
  --secondaryClr:#cc3700;
  --tertiaryClr:#eb85602c;

}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
}
.logo span {
  color: var(--primaryClr);
}
.navbar img{
  width:200px;
  aspect-ratio: 1;
}
.nav-links {
  display: flex;
  gap: 10px;
}
.nav-links li a {
  padding:15px;
  font-weight: 500;
  transition: 0.3s;
  border-radius: 5px;
  color: #333;
}
.nav-links li a.active,
.nav-links li a:hover {
  background-color: var(--primaryClr);
}
.menu-toggle {
  display:none;
  font-size: 28px;
  cursor: pointer;
}
footer {
  background-color:#333;
  padding: 30px;
  color: white;
  text-align: center;
  position: relative;
}

.hero {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  color: #fff;
  max-width: 700px;
}
.hero h1{
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 15px rgba(0,0,0,0.5);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}
.btn {
  display: inline-block;
  padding: 12px 30px;
  font-weight: 600;
  background: var(--primaryClr);
  color: #fff;
  border-radius: 50px;
  transition: all 0.2s;
}
.btn:hover {
  background-color: var(--secondaryClr);
}
.about {
  padding: 40px 60px;
  text-align: center;
}
.about h2 {
  font-size: 2.2rem;
  color: var(--primaryClr);
  margin-bottom: 20px;
}
.about p {
  max-width: 750px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
}
.services {
  padding: 50px 20px;
  background-color: #f5f5f5;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}
.service-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-inline:20px;
  padding-block: 40px;
}
.service-card {
  position: relative;
  height: 300px;
  color: var(--primaryClr);
  padding: 30px 20px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  max-width: 550px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.service-card:nth-child(1) {
  background-image: url('photos/img2.jpg');
}
.service-card:nth-child(2) {
  background-image: url("photos/img1.jpg");
}
.service-card:nth-child(3) {
  background-image: url('photos/img3.jpg');
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #ee42049b;
  transition: height 0.3s ease-in-out;
  border-radius: 12px;
  z-index: 0;
}
.service-card:hover::before {
  height: 100%;
}
.service-card h3{
  position: absolute;
  top:50%;
  transform:translateY(-50%);
  font-size: 1.8rem;
    z-index: 1;
  margin:10px;
  transition: all 0.6s ease-in-out;
  
  cursor:default;
}
.service-card p{
    cursor:default;
}
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
  margin:10px;
  transition: color 0.6s ease-in-out;
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: black;
}
.service-card:hover h3{
    top:0;
  transform: translate(0);
  position:inherit;
}
.service-card .btn{
  background-color: #f5f5f5;
  transition:0.5s;
}
.service-card .btn:hover{
  background-color:var(--primaryClr) ;
  transform: none;
  color:white;
}
.service-card a.btn, .service-card p{
  position: relative;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease 0.3s;
}
.service-card:hover a.btn,.service-card:hover p{
  opacity: 1;
  visibility: visible;
  transition-delay: 0.3s;
}
.portfolio {
  padding: 50px 5%;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.5rem;
  color: var(--primaryClr);
  margin-bottom: 50px;
  font-weight: bold;
}

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.portfolio-item {
  position: relative;
  width: 30%;
  min-width: 250px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05) rotateX(5deg) rotateY(5deg);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}
.portfolio-item:before{
  content: "click to view in full";
  font-size: 30px;
  font-weight: 900;
  color:var(--primaryClr);
  position:absolute;
  height:0;
  width:100%;
  bottom:0;
  left:0;
  background-color:rgba(245, 245, 245, 0.35);
  opacity: 0;
  transition:0.4s;
  text-align: center;
  font-size: 1em;
  z-index: 1;
}
.portfolio-item:hover:before{
  opacity: 1;
  height:20%;
}
.portfolio-item:hover{
    animation: none;
}
.portfolio .btn{
  display: none;
  border: none;
  margin:0 auto;
  margin-top: 15px;
  border: none;
}
.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
  padding-block: 80px;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 4rem;
  color: white;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  text-shadow: 0 2px 10px rgba(0,0,0,0.7);
  z-index: 1001;
  transition: transform 0.2s ease;
}
.lightbox.active .lightbox-img {
  transform: scale(1.4);
}
.about-why {
  padding: 20px;
  background-color: #FFECE6;
  border: 3px solid var(--primaryClr);
  border-radius: 20px;
  width:95%;
  margin: 40px auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-why h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}
.about-why h2::after {
  content: '';
  width: 20%;
  height: 4px;
  background-color: var(--primaryClr);
  display: block;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}
.about-why .why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-why .why-item {
  display: flex;
  align-items: center;
  background-color: #FFECE6; 
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-why .why-icon {
  font-size: 50px;
  margin-right: 25px;
  color: var(--primaryClr);
}
.about-why .why-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primaryClr);
}
.about-why .why-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.about-why .btn {
  width:fit-content;
  margin-top: 50px;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  background-color: var(--primaryClr);
  transition: 0.3s;
}
.about-why .btn:hover {
  background-color: var(--secondaryClr);
}
.about-why p {
  visibility: hidden;
  white-space: nowrap;
}
/* .testimonials {
  padding: 80px;
  border:none;
  text-align: center;
  width:95%;
  overflow: hidden;
}
.testimonials h2 ,.tm h2{
  font-size: 2.8rem;
  color: #FF4500;
  margin-bottom: 60px;
}
.test-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.test-card {
  background-color: #fff;
  border: 2px solid #FF4500;
  border-radius: 40px 40px 10px 40px; 
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.test-card p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}
.test-card h4 {
  font-size: 1.1rem;
  font-weight: bold;
  color: #FF4500;
  margin: 0;
} */
 /* .test-carousel {
  overflow: hidden;
  width: 95vw;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.test-carousel::before,
.test-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8vw;
  pointer-events: none;
  z-index: 2;
}
.test-carousel::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}
.test-carousel::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}
.test-card {
  flex: 0 0 calc((95vw - 4 * 30px) / 5);
  min-width: 200px;
  padding: 30px 25px;
  border: 2px solid #FF4500;
  border-radius: 40px 40px 10px 40px;
  background-color: #fff;
  box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
} */
.contact-container{
    margin:0 auto;
    width:92vw;
    max-width: 1200px;
    outline: 1px solid var(--primaryClr);
    display: flex;
    justify-content: center;
    align-items: center;
    padding:50px 20px;
    margin-block: 80px;
    border-radius: 25px;
    gap:25px;
    box-shadow: var(--tertiaryClr) 0px 25px 50px -12px;
}
.contact-form{
    width:49%;  
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--tertiaryClr) ;
}
.contact-form>h1,.contact-info>h1{
    margin-bottom: 40px;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}
.contact-form>h1:before{
    content: "";
    position:absolute;
    bottom:0;
    left:0;
    height:2px;
    width:90%;
    background-color: var(--tertiaryClr);
}
.act-form{
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.form-stuff{
    margin-block:10px;
}
 input, textarea{
    margin-right: 10px;
    border: none;
    border-bottom: 1px solid var(--tertiaryClr);
    padding:10px;
    height:5rem;
    width:30vw;
    max-width: 500px;
    font-size:2rem;
}
input::placeholder,
textarea::placeholder {
    color:var(--primaryClr);
    font-size: 1.3rem;
}
.contact-form button{
    background-color: var(--primaryClr);
    padding:10px;
    font-size: 1.2em;
    border-radius: 5px;
    width:30vw;
    max-width: 500px;
    border:none;
    transition:0.2s;
    cursor: pointer;
    margin-top: 10px;
    margin-right: 10px;
}
.contact-form button:hover{
    background-color: var(--secondaryClr);
    color: white;
}
.infos{
    margin-block: 30px;
}
.infos h1{
    text-align: center;
    font-size: 1.5rem;
    color: var(--primaryClr);
}
.infos p{
    text-align: center;
    font-size: 1.1rem;
}
.contact-info{
  margin: 0 auto;
}
.about-divider{
  display: flex;
  margin: 0 auto;
  gap:20px;
  background-color: #f5f5f5;
  padding-block: 30px;
  justify-content: center;
  align-items: stretch;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.svP {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}
.svP.visible {
  opacity: 1;
  transform: translateX(0);
}
.tm {
  padding: 50px 50px;
  background-color: #f5f5f5;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.tm h2 {
  position: relative;
}
.tm h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primaryClr);
  margin: 15px auto 0;
  border-radius: 2px;
}
.tm-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.tm-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  flex: 1 1 300px;
  max-width: 450px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
}
.tm-card:hover {
  transform: translateY(-15px) rotate(-1deg) scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}
.tm-card img {
  width: 140px;
  aspect-ratio: 1;
  margin-bottom: 20px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tm-card:hover img {
  transform: scale(1.1) rotate(5deg);
}
.tm-card h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #2c3e50;
}
.tm-card p:first-of-type {
  font-size: 16px;
  font-style: italic;
  color: var(--primaryClr);
  margin-bottom: 15px;
}
.tm-card p:last-of-type {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}
.tm-card .social {
  position: absolute;
  top:5%;
  left: 90%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.4s ease;
}
.tm-card:hover .social {
  opacity: 1;
}
.tm-card .social a {
  text-decoration: none;
  color: #fff;
  background: var(--primaryClr);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}
.tm-card .social a:hover {
  background: var(--primaryClr);
  transform: scale(1.2);
}
.tm p{
  font-size: 5rem;
}
.service-section {
    margin:60px auto;
    padding:0 20px;
}
.service-title {
  color:var(--primaryClr);
  text-align:center;
  font-size:2rem;
  margin-bottom:40px;
}
.package-container {
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}
.package-card {
    background:#f5f5f5;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border-radius:20px;
    padding:40px 20px;
    width:350px;
    text-align:center;
    border-top: 5px solid transparent;
    pointer-events: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}
.package-card h3 { 
  font-size:1.5rem;
   margin-bottom:10px; 
}
.package-card p {
  font-size:0.95rem; 
  opacity:0.9;
  margin-bottom:15px;
 }
.package-card ul {
   list-style:none; 
   padding:10px; 
   text-align:left; 
   margin-bottom:20px; 
  }
.package-card ul li {
    margin:8px 0;
    position:relative;
    padding-left:20px;
    font-size:0.9rem;
}
.package-card ul li::before {
    content:'✔';
    position:absolute;
    left:0;
    color:currentColor;
    font-weight:bold;
}
.package-card .choose-btn {
   pointer-events: auto;
 }

.web .package-card{ 
  border-top-color:var(--primaryClr);
}
.it .package-card{ 
  border-top-color:#4caf50;
}
.photo .package-card{
   border-top-color: #2196f3;
}
.package-card.active {
    border-color: var(--primaryClr) !important;
    background: var(--tertiaryClr);
    box-shadow: 0 0 15px var(--tertiaryClr);
    transform: scale(1.03);
    animation: pulse 0.35s ease;
}
.selection-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(76, 175, 80, 0.7);
    color: white;
    font-size: 17px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transform: translateY(100px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 16px;
    box-sizing: border-box;
    z-index: 999;
}
.selection-bar.show { 
  transform: translateY(0); opacity: 1; 
}
.bottom-btn {
    background: white;
    color: #4caf50;
    border: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.bottom-btn:hover {
   background: #eaffef; 
  }
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
  z-index: 1000;
}
.modal.show {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  width: 90%;
  max-width: 430px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transform: scale(0.8);
  opacity: 0;
  animation: popupIn 0.35s ease forwards;
}
.modal-content h2 {
  color: var(--primaryClr);
  margin-bottom: 15px;
}
#modalList { 
  list-style: none;
   margin-bottom: 15px;
   text-align: left;
    padding: 0;
 }
#modalList li {
   margin:6px 0; padding-left:18px; 
   position:relative; 
  }
#modalList li::before {
  content:"✔";
  position:absolute;
  left:0;
  color:#4caf50;
  font-weight:bold;
}

.modal-input,
.modal-textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  margin-top: 12px;
  font-size:1rem;
}
.modal-textarea { 
  height:110px; resize:none; 
}
.modal-buttons {
  margin-top:18px;
  display:flex;
  gap:10px;
}
.modal-close,
.modal-send {
  flex:1;
  padding:12px;
  border-radius:8px;
  font-size:1rem;
  font-weight:600;
  border:none;
  cursor:pointer;
}
.modal-close { 
  background:#bfbfbf; 
  color:#333; 
}
.modal-send { 
  background:var(--primaryClr); 
  color:#fff;
 }
.modal-send:hover { 
  background:var(--secondaryClr); 
}
.xyz {
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.xyz.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1.03); }
}
@keyframes popupIn {
  0% { opacity: 0; transform: scale(0.8); }
  100% { opacity:1; transform: scale(1); }
}
@media (max-width: 1000px) {
  .service-card {
    height: 320px;
  }
  .service-card h3{
    font-size: 1.5em;
  }
  .test-card{
    flex: 0 0 calc((95vw - 3 * 30px) / 4);
  }
  .tm-grid {
    gap: 30px;
  }
}
@media screen and (max-width: 800px) {

  html
  .navbar{
    padding:10px 20px;
  }
  .logo{
    font-size: 1.5rem;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    width: 200px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: none;
    padding: 15px 0;
    border-radius: 0 0 10px 10px;
  }
  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.active {
    display: flex;
  }
  .hero{
    height:40vh;
  }
  .hero-content{
    padding: 10px;;
  }
  .hero h1{
    font-size: 2rem;
  } 
  .hero p{
    display: none;
  }
  .services{
    padding: 50px 20px;
  }
  .service-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-card{
    height:250px;
  }
  .service-card h3{
    font-size: 2em;
  }
  .about-why{
    display: none;
  }
  .about-why .why-item {
    flex-direction: column;
    text-align: center;
  }
  .about-why .why-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .portfolio{
    gap:10px;
  }
  .portfolio-item{
    width:100%;
  }
  .portfolio .btn{
    display: block;
  }
  .overlay{
    animation: none;
  }
  .overlay:nth-child(4){
    display: none;
  }
  .overlay:nth-child(5){
    display:none;
  }
  .overlay:nth-child(6){
    display:none;
  }
    .test-card{
    flex: 0 0 calc((95vw - 3 * 30px) / 3);
  }
  .tm-card {
    max-width: 80%;
    opacity: 1;
  }
  .about-divider{
    flex-direction: column;
  }
  .contact-container{
    flex-direction: column;
    padding: 40px;
}
  .contact-container>div{
    width:95%;
}
  .contact-form{
    border-right: none;
    border-bottom: 1px solid var(--primaryClr);
    padding-bottom: 50px;
}
  .contact-form button,.form-stuff input,.form-stuff textarea{
    width:70vw;
  }
  .package-container{ 
    flex-direction:column; 
    align-items:center;
   }
  .package-card{
    width:50vw;
  }
  
}
@media (max-width: 400px) {
  .hero-content h1{
    font-size: 1em;
  }
  .btn{
    padding:10px 20px;
    font-size: 0.8em;
  }
  .btn:hover{
    transform:none;
  }
  .about{
    padding:30px 20px ;
  }
  .about h2,.services h2,.portfolio h2,.testimonials h2{
    font-size: 1rem;
  }
  .about p{
    font-size: 0.8rem;
  }
  .services{
    padding: 30px 20px;
  }
  .service-grid{
    padding-top:20px;
  }
  .service-card h3{
    font-size: 1.3rem;
  }
  .service-card p{
    user-select: none;
  }
  .portfolio{
    padding:30px 8%;
  }
  .portfolio-item img{
    height:150px;
  }
  .portfolio-item:before{
    display: none;
  }
  .testimonials{
    padding: 20px 30px;
  }
  .footer p{
    font-size: 0.8rem;
  }
  .test-card{
    flex: 0 0 calc((95vw - 3 * 30px) / 3);
  }
  .test-card p{
    margin-bottom: 10px;
  }
  .test-card h4{
    font-size: 1rem;
  }
  .tm-card {
    padding: 30px 
  }
  .lightbox{
    display: none;
  }
  .tm{
    padding: 10px;
  }
  .tm h2{
    padding-inline: 10px;
  }
  .tm-card h3{
    font-size: 1.2rem;
  }
}


