

/* team section css*/
/* 
.image_logo{
  vertical-align: super;
} */


.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 80px;
    margin-top: 80px;
    text-align: center;
  }
  
  .section-title h1{
    display: inline-block;
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 600;
    color: #0d575a;
    text-align: center;
    font-family: 'roboto',sans-serif;
    /* margin: 0 0 5px; */
    position: relative;
  }
  
  
  .row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -130px;
    margin-left: -130px;
  }
  
  .column{
    position: relative;
    width: 100%;
    padding-right: 15px ;
    padding-left: 15px;
    flex: 0 0 100%;
  }
  
  
.team-section {
  text-align: center;
  padding: 50px 20px;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px;
  padding: 20px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s;
}

.team-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.5rem;
  margin: 15px 0;
  color: #333;
}

.team-card p {
  font-size: 1rem;
  color: #777;
  margin-bottom: 15px;
}

.team-card button {
  padding: 10px 20px;
  border: none;
  /* background-color: #007BFF; */
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* .team-card button:hover {
  /* background-color: #0056b3; */
*/

.team-card:hover {
  transform: translateY(-10px);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .team-card {
      width: 45%;
      margin: 20px 0;
  }
}

@media screen and (max-width: 500px) {
  .team-card {
      width: 100%;
  }
}

@media (min-width: 375px) and (max-width: 500px) {
  .team-section .team-content h4 {
      font-size: 18px; /* Adjust font size for small screens */
  }

  .team-section .team-content p {
      font-size: 16px; /* Adjust font size for small screens */
  }

  .team-section .team-img img {
      max-width: 100%; /* Ensure images don’t exceed container width */
      height: auto;
  }

  .team-section .column {
      margin-bottom: 15px; /* Space between team members */
  }
  .team-section .section-title {
    text-align: center;
    margin-bottom: 30px; /* Optional: Adjust the space below the title */
    font-size: 14px;
}


}
  
  .team .team-img{
    position: relative;
    font-size: 0;
    text-align: center;
  }
  
  .team .team-img img{
    width: 160px;
    height: auto;
    /* border-radius: 100%;
    border: 8px solid #107070; */
  }
  
  .team .team-content {
    padding: 100px 20px 75px 20px;
    margin-top: -91px;
    text-align: center !important;
    background: cadetblue;
    border-radius: 10px;
  
  }
  .team .team-content h2{
   font-size: 25px;
   font-weight: 400;
   letter-spacing: 2px;
  
  }
  
  .team .team-content h3{
    font-size: 16px;
   font-weight: 300;
  
  }
  
  .team .team-content h4{
    font-size: 16px;
   font-weight: 600;
   letter-spacing: 1px;
   align-items: center;
  font-family: 'roboto',sans-serif;
   margin-bottom: 0;
  
  }
  
  
  .team .team-content p{
    font-size: 16px;
   font-weight: 400;
   letter-spacing: 1px;
  }
  
  .team .team-social{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 35px;
    top:0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.6);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
  }
  
  .team:hover .team-social{
    opacity: 1;
  }
  
  .team .team-social a{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 10px;
    transition: all .3s;
    margin-top: 50px;
  }
  
  .team .team-social a.social-fb{
    background: cadetblue;
  }
  
  .team .team-social a.social-tw{
    background: cadetblue;
  }
  
  .team .team-social a.social-li{
    background: cadetblue;
  }
  
  .team .team-social a.social-in{
    background: cadetblue;
  }
  
  .team .team-social a.last-child{
    margin-right: 0 ;
  }
  
  .team:hover .team-social a{
    margin-top: 0;
  }
  
  .team .team-social a:hover{
    background: #0f5858;
  }

  /* Base styles */
.section-title {
  text-align: center;
  margin: 20px 0;
}

.section-title h1 {
  font-size: 26px; /* Large default font size */
  color: #333;
  margin: 0;
  padding: 10px;
}


 
/* Tablet Responsive */
@media (min-width: 570px) and (max-width: 767px) {
  .container {
      max-width: 540px;
  }
  .column {
      max-width: 50%;
      margin: 20px 0;
  }
  .team .team-img img {
      width: 140px;
  }
  .team .team-content {
      padding: 80px 20px 60px 20px;
  }
  .team-section .section-title {
    text-align: center;
    margin-bottom: 30px; /* Optional: Adjust the space below the title */
}

  .section-title h1 {
    font-size: 1.5rem; /* Smaller font size for mobile devices */
}

  
}

/* Laptop Responsive */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
      max-width: 720px;
  }
  .column {
      max-width: 33.33%;
      margin: 20px 0;
  }
  .team .team-img img {
      width: 150px;
  }
  .team .team-content {
      padding: 90px 20px 70px 20px;
  }
  .section-title h1 {
    font-size: 2rem; /* Adjust font size for tablets */
}
}

/* Desktop Responsive */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
      max-width: 960px;
  }
  .column {
      max-width: 25%;
      margin: 20px 0;
  }
  .team .team-img img {
      width: 160px;
  }
  .team .team-content {
      padding: 100px 20px 75px 20px;
  }
  .section-title h1 {
    font-size: 2.5rem; /* Adjust font size for medium devices */
}
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
      max-width: 1140px;
  }
  .column {
      max-width: 25%;
  }
  .section-title h1 {
    font-size: 2.5rem; /* Adjust font size for medium devices */
}
}


/* Blog Section */

 /* Basic reset for box sizing */
 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container to center the thumbnails and arrange them in a row */
.thumbnail-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px; /* Space between thumbnails */
    padding: 30px;
    background-color: #f4f4f4;
}

/* Thumbnail styling */
.thumbnail {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    margin: 20px;
    transform: perspective(800px) rotateY(10deg); /* 3D effect */
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

/* 3D hover effect */
.thumbnail:hover {
    transform: perspective(800px) rotateY(0deg) translateY(-10px) scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

/* Thumbnail image */
.thumbnail-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Thumbnail content */
.thumbnail-content {
    padding: 15px;
    text-align: justify;
}

.thumbnail-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    word-spacing: 1;
    line-height: normal;
    
}

.thumbnail-description {
    font-size: 0.9em;
    color: hsl(0, 0%, 40%);
    margin-bottom: 15px;
}

/* Read more button */
.read-more-btn {
    padding: 8px 16px;
    font-size: 0.9em;
    border: none;
    border-radius: 4px;
    color: #fff;
    background-color: cadetblue;
    cursor: pointer;
    transition: background-color 0.3s;
    /* text-align: center;
    align-items: center; */
    justify-content: center;

}

.read-more-btn:hover {
    background-color: #0d575a;
   
}

/* Blog Details Section */

 /* Basic reset for box sizing */
 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* Main blog detail container */
.blog-detail-container {

    max-width: 800px;
    margin: 0 auto;
}

.blog-date {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.blog-text {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Footer styling */
.footer {
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px;
    margin-top: 40px;
}


/* Career Section */
/* Basic reset for box sizing */
/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
} */

/* Header styling */
.header {
  background-color: #007BFF;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.header p {
  font-size: 1.2em;
}

/* Main content styling */
.main-content {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section: Why Join Us */
.why-join-us {
  margin-bottom: 40px;
  text-align: center;
}

.why-join-us h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.why-join-us p {
  font-size: 1.1em;
  color: #555;
}

/* Section: Job Openings */
.job-openings {
  margin-bottom: 40px;
}

.job-openings h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.job-listing {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.job-listing h3 {
  font-size: 1.5em;
  color: #333;
}

.job-listing p {
  color: #666;
}

.apply-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: cadetblue;
  color: #fff;
  border: 1px solid #0d575a;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.apply-btn:hover {
  background-color: #0d575a;
}

/* Section: Benefits */
.benefits {
  margin-bottom: 40px;
  align-items: center;
}

.benefits h2 {
  font-size: 2em;
  margin-bottom: 20px;
  text-align: center;
}

.benefits ul {
  list-style: disc;
  padding-left: 40px;
}

.benefits li {
  font-size: 1.1em;
  margin-bottom: 10px;
  color: #555;
}

/* Section: Call to Action */
.call-to-action {
  text-align: center;
  align-items: center;
  padding: 20px;
  background-color: cadetblue;
  color: #fff;
  border-radius: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.call-to-action h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.call-to-action p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.apply-now-btn {
  padding: 10px 20px;
  background-color: #0d575a;
  color: white;
  border: 2px solid #0d575a;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.apply-now-btn:hover {
  background-color: white;
  color: #0d575a;
}

/* .apply-btn,
.apply-now-btn {
    margin-top: 10px;
    padding: 10px 20px;
    background-color: cadetblue;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, padding 0.3s;
    font-size: 1em;
}

.apply-btn:hover,
.apply-now-btn:hover {
    background-color: #0d575a;
} */

/* RESPONSIVENESS */

/* Medium devices (tablets, 768px and up) */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2em;
    }
    .header p {
        font-size: 1em;
    }
    .why-join-us h2,
    .job-openings h2,
    .benefits h2,
    .call-to-action h2 {
        font-size: 1.8em;
    }
    .why-join-us p,
    .job-listing p,
    .benefits li,
    .call-to-action p {
        font-size: 1em;
    }

    .apply-btn,
    .apply-now-btn {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}

/* Small devices (mobiles, 576px and up) */
@media (max-width: 576px) {
    .header h1 {
        font-size: 1.5em;
    }
    .header p {
        font-size: 0.9em;
    }
    .why-join-us h2,
    .job-openings h2,
    .benefits h2,
    .call-to-action h2 {
        font-size: 1.6em;
    }
    .why-join-us p,
    .job-listing p,
    .benefits li,
    .call-to-action p {
        font-size: 0.9em;
    }

    .apply-btn,
    .apply-now-btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .header h1 {
        font-size: 1.3em;
    }
    .header p {
        font-size: 0.8em;
    }
    .why-join-us h2,
    .job-openings h2,
    .benefits h2,
    .call-to-action h2 {
        font-size: 1.4em;
    }
    .why-join-us p,
    .job-listing p,
    .benefits li,
    .call-to-action p {
        font-size: 0.8em;
    }

    .apply-btn,
    .apply-now-btn {
        padding: 5px 10px;
        font-size: 0.75em;
    }
}


/* Gallery Section */

	/* Container styles */
    .project-grid-wrapper {
        perspective: 1000px;
      }
      
      .project-grid-item-img {
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.5s ease;
      }
      
      /* 3D effect on hover
      .project-grid-item-img:hover {
        transform: rotateY(15deg) rotateX(5deg) scale(1.05);
      } */
      
      /* Image styles */
      .project-grid-item-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
      }
      
      /* Hover styles for enhancing the 3D feel */
      /* .project-grid-item-img:hover img {
        transform: translateZ(30px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
      } */
      
      /* Container styles */
      .project-grid-wrapper {
        perspective: 1000px;
      }
      
      .project-grid-item-img {
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
        animation: float 4s ease-in-out infinite;
      }
      
      /* 3D effect on hover */
      .project-grid-item-img:hover {
        transform: rotateY(15deg) rotateX(5deg) scale(1.05);
        animation: none; /* Stop floating animation on hover */
      }
      
      /* Image styles */
      .project-grid-item-img img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
      }
      
      /* Hover styles for enhancing the 3D feel */
      .project-grid-item-img:hover img {
        transform: translateZ(30px);
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.4);
      }
      
      /* Floating animation keyframes */
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-10px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      /* Contact Section */

      /* Reset and basic styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}


/* Main content styling */
.main-content {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Contact Form Section */
.contact-form-section {
    flex: 1 1 60%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* Contact Form Styling */
.contact-form {
    display: grid;
    gap: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    display: block;
    color: #555;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007BFF;
}

.submit-btn {
    padding: 12px 20px;
    background-color: cadetblue;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background-color: #0f5858;
    transform: translateY(-2px);
}

/* Contact Information Section */
.contact-info {
    flex: 1 1 35%;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.contact-info table {
  width: 100%;
  border-collapse: collapse; /* Ensures there are no borders */
  border: none;
  text-align: justify;
}

.contact-info td {
  padding: 5px 0;
  font-size: 16px;
  color: #444;
  vertical-align: top; /* Aligns the icons and text properly */
  border: none;
}

.contact-info i {
  font-size: 18px;
  color: #0f5858;
}

.contact-info td:first-child {
  width: 20%;
  text-align: center; /* Centers the icons in the first column */
}

.contact-info td:last-child {
  width: 80%;
}


/* Map Section */


.map-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #0f5858;

}
/* Map Section */
.map-section {
    width: 100%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 20px;
}

.map-placeholder {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    border-radius: 8px;
    font-size: 1.2em;
    overflow: hidden; /* Ensures content stays within the box */
    width: 100%;
    max-width: 100%;
}

/* Responsive Iframe */
.map-placeholder iframe {
    width: 100%;
    height: 300px;
    border: none; /* Removes the default iframe border */
    border-radius: 8px;
}

/* footer section */
*{
  font-family: 'Roboto', sans-serif;
}

 .site-footer {
  /* color: #0f5858; */
  background-color: #0f5858 !important;
  padding: 45px 0 20px;
  font-size: 15px;
  line-height: 24px;
  color: cadetblue;
font-family: 'Roboto', sans-serif;
}

.footer-content {
  color: white !important;
  line-height: 2 !important;
  padding-right: 10px;
font-family: 'Roboto', sans-serif;


}

.site-footer hr.small {
  margin: 20px 0
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px
}

.site-footer a {
  color: #fff;
}



.footer-content {
  padding-left: 0;
  list-style: none;
}

.footer-content li {
  color: #fff;
  display: block
}

.footer-content a {
  color: #fff;
font-family: 'Roboto',sans-serif;
line-height: 1.5;
}

.footer-content a:active,
.footer-content a:focus,
.footer-content a:hover {
  color: #0f5858;
  text-decoration: none;
}

.footer-content.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer span {
  color: white;
  line-height: 0;
  padding: 10px 5px;
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: cadetblue;
}

.copyright-text {
  margin: 0
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {

  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: cadetblue;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: white;
  background-color: #0f5858;
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.footer-content p {
color: white !important;
font-family: 'Roboto', sans-serif;
line-height: 1.5;
}


@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
  
}

 /* Footer Styling */
 .prague-footer {
  background-color: cadetblue; /* Set background color to cadetblue */
  color: white; /* Set text color to white for better readability */
  padding: 20px 0;
}

.footer-content-outer {
  padding: 20px;
}

.footer-content a {
  color: white; /* Set footer links color */
  text-decoration: none;
}



.social-icons {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icons li a {
  color: cadetblue; /* Set social icon color */
  font-size: 20px;
}

.text-center span,
.text-center a {
  color: white; /* Set copyright text color */
}

.text-center a:hover {
 
  color: #0f5858;
}

.footer-head {
color: #0f5858 !important;
}

hr {
  border-top: 1px solid white; /* Adjust the color of the horizontal rule */
}


@media (min-width: 1441px) and (max-width: 2560px) {
  .container {
      max-width: 1440px;
  }

  .column {
      max-width: 20%;
      margin: 30px 0;
  }

  .team .team-img img {
      width: 200px;
  }

  .team .team-content {
      padding: 120px 30px 100px 30px;
  }

  .section-title h1 {
      font-size: 3rem; /* Larger font size for wide screens */
  }

  .header h1 {
      font-size: 3.5em; /* Adjust for larger screen */
  }

  .header p {
      font-size: 1.5em;
  }

  .why-join-us h2,
  .job-openings h2,
  .benefits h2,
  .call-to-action h2 {
      font-size: 2.5em;
  }

  .why-join-us p,
  .job-listing p,
  .benefits li,
  .call-to-action p {
      font-size: 1.5em;
  }

  .apply-btn,
  .apply-now-btn {
      padding: 12px 24px;
      font-size: 1.2em;
  }
  
  .team-section .section-title {
      text-align: center;
      margin-bottom: 40px;
  }

  .team-section .team-content h4 {
      font-size: 24px;
  }

  .team-section .team-content p {
      font-size: 20px;
  }

  .team-section .team-img img {
      max-width: 100%;
      height: auto;
  }
}
