@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');

  :root {
    --primary-color:        #ff8500;
    --secondary-color:      #3f3f3f;
    --white-color:          #ffffff;
    --dark-color:           #171819;
    --project-bg:           #f0f8ff;
    --menu-bg:              #272727;

    --title-color:          #15141a;
    --gray-color:           #909090;
    --link-color:           #404040;
    --p-color:              #666262;

    --base-font-family:     'Exo 2', sans-serif;
    --title-font-family:    'Exo 2', sans-serif;
    --font-bold-family:     'Exo 2', sans-serif;
    --font-weight-bold:     bold;

    --h1-font-size:         42px;
    --h2-font-size:         32px;
    --h3-font-size:         24px;
    --p-font-size:          18px;
    --base-font-size:       16px;
    --menu-font-size:       14px;

    --border-radius-large:  100px;
    --border-radius-small:  5px;
  }

  body {
    background: var(--white-color);
    font-family: var(--base-font-family);
  }


  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h5,h6 {
    font-family: var(--title-font-family);
    line-height: inherit;
  }

  h1 {
    color: var(--title-color);
    font-size: var(--h1-font-size);
  }

  h2 {
    font-size: var(--h2-font-size);
    font-weight: 100;
  }

  h3 {
    font-size: var(--h3-font-size);
    font-weight: 100;
    margin-bottom: 0;
  }


  p {
    color: var(--p-color);
    font-size: var(--p-font-size);
    line-height: 1.5em;
  }

  b, 
  strong {
    letter-spacing: 0;
    color: var(--secondary-color);
  }

  .h1-home {
      font-weight: 600;
      line-height: 1.1;
      font-size: 49px;
  }

  .p-home{
    color: white;
    font-weight: 200;
    font-size: 20px;
    padding-top: 10px;
    max-width: 500px;
  }

  .h2-main{
    margin: 0px 100px;
    text-align: center;
  }
  /*  BLOCKQUOTES */
  .quote {
    position: relative;
    margin: 0;
  }

  .quote::after {
    content: "“";
    position: absolute;
    bottom: -80px;
    left: 20px;
    font-family: times;
    color: var(--gray-color);
    font-weight: var(--font-weight-bold);
    font-size: 14em;
    line-height: 0;
    opacity: 0.10;
  }

  blockquote {
    border-left: 5px solid rgba(0,0,0,0.05);
    display: block;
    margin: 42px 0;
    padding: 14px 22px;
    color: rgba(0,0,0,0.5);
  }


  /* BUTTON */
  .custom-btn {
    background: transparent;
    border: 2px solid var(--dark-color);
    border-radius: var(--border-radius-large);
    padding: 12px 26px 14px 26px;
    color: var(--dark-color);
    font-family: var(--title-font-family);
    font-size: var(--p-font-size);
    white-space: nowrap;
  }

  .custom-btn.btn-bg {
    background: var(--secondary-color);
    color: var(--white-color);
    border-color: transparent;
    transition: all .3s ease;
    padding: 10px 70px;
    font-size: 19px;
  }
  
  .custom-btn:hover,
  .custom-btn:focus {
    background: var(--white-color);
    color: var(--secondary-color);
    border-color: transparent;
  }


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  *::before,
  *::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  a {
    color: var(--link-color);
    font-weight: normal;
    text-decoration: none;
  }

  a:hover, 
  a:active, 
  a:focus {
    color: var(--secondary-color);
    outline: none;
    text-decoration: none;
  }

  ::selection {
    background: var(--secondary-color);
    color: var(--white-color);
  }
  
  .main-padding{
    padding: 3em 0;
  }

  .section-padding {
    padding: 8em 0;
  }
  .section-padding-half {
    padding: 4em 0;
  }

  .google-map iframe {
    display: block;
    width: 100%;
  }



  /*---------------------------------------
    MENU             
  -----------------------------------------*/

  .navbar {
    background: var(--menu-bg);
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    padding:1em 1.5em;
  }

  .navbar-brand {
    color: var(--white-color);
  }
  .navbar-img{
    width: 150px;
  }

  .nav-link {
    color: var(--white-color);
    font-size: var(--menu-font-size);
    letter-spacing: 0.4px;
    margin: 0 1.6em;
    padding: 0.6em;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--primary-color);
    transition: 0.35s;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact {
    background-color: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: #fff;
    font-family: var(--font-bold-family);
    padding: 0.6em 2em 0.8em 2em;
  }

  .navbar-expand-lg .navbar-nav .nav-link.contact:hover,
  .navbar-expand-lg .navbar-nav .nav-link.contact.active {
    background: var(--white-color);
    color: var(--secondary-color);
    transition: 0.4s;
  }

  .navbar-nav .navbar-toggler-icon {
    background: none;
  }

  .navbar-toggler {
    border: 0;
    padding: 0;
    cursor: pointer;
    margin: 0 10px 0 0;
    width: 30px;
    height: 35px;
    outline: none;
  }

  .navbar-toggler:focus {
    outline: none;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease;
    transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
    top: 0;
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
  }

  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
  }

  .navbar-toggler .navbar-toggler-icon {
    background: var(--white-color);
    transition: background 10ms 300ms ease;
    display: block;
    width: 30px;
    height: 2px;
    position: relative;
  }

  .navbar-toggler .navbar-toggler-icon::before,
  .navbar-toggler .navbar-toggler-icon::after {
    transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease;
    transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
    position: absolute;
    right: 0;
    left: 0;
    background: var(--white-color);
    width: 30px;
    height: 2px;
    content: '';
  }

  .navbar-toggler .navbar-toggler-icon::before {
    top: -8px;
  }

  .navbar-toggler .navbar-toggler-icon::after {
    top: 8px;
  }



  /*---------------------------------------
     HERO              
  -----------------------------------------*/

  .hero {
    position: relative;
    padding: 5em 0;
    overflow: hidden;
  }

  .hero-bg {
    background-image: url('../images/bg-main.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-image {
    position: relative;
    top: 2em;
  }



  /*---------------------------------------
     PROJECT              
  -----------------------------------------*/

  .project {
    background: var(--project-bg);
  }

  .project-wrapper {
    position: relative;
  }

  .project-wrapper img {
    border-radius: var(--border-radius-small);
  }

  .project-info {
    background: var(--white-color);
    border-radius: var(--border-radius-small);
    position: absolute;
    bottom: 32px;
    right: 32px;
    left: 32px;
    width: 90%;
    padding: 32px;
  }

  .project-info small {
    font-family: Plain-Bold;
    color: var(--gray-color);
    position: relative;
    top: 2px;
  }

  .project-info a {
    color: var(--primary-color);
  }

  .project-info .project-icon {
    background: var(--primary-color);
  }

  .project-icon {
    position: absolute;
    right: 30px;
    top: 40px;
    background: var(--dark-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    font-size: var(--h2-font-size);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding-left: 5px;
  }

  .owl-theme .owl-dots .owl-dot {
    outline: none;
  }

  .owl-theme .owl-dots .owl-dot span {
    background: var(--gray-color);
    width: 50px;
    height: 3px;
    margin:  35px 5px;
  }

  .owl-theme .owl-dots .owl-dot.active span, 
  .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color);
  }

  .list-detail {
    margin-left: 1em;
    padding-left: 1em;
    position: relative;
  }

  .list-detail li {
    display: block;
    list-style: none;
    margin: 0.6em 0 0 0.8em;
  }

  .list-detail li::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 0 16px 16px 0;
    border-color: transparent var(--secondary-color) transparent transparent;
    border-style: solid;
    position: absolute;
    left: 0;
  }

  .list-detail span {
    position: relative;
    bottom: 5px;
  }

  .client-info img {
    width: 100px;
    margin-right: 1em;
  }



  /*---------------------------------------
      ABOUT            
  -----------------------------------------*/

  .about {
    position: relative;
    overflow: hidden;
  }

  .about-image img {
    display: block;
    margin: 0 auto;
    width: 800px;
    margin-top: 50px;
  }



  /*---------------------------------------
      BLOG            
  -----------------------------------------*/

  .blog-header {
    border-radius: var(--border-radius-small);
    position: relative;
    overflow: hidden;
  }

  .blog-header img {
    border-radius: var(--border-radius-small);
    display: block;
  }

  .blog-header-info {
    background: linear-gradient(transparent,rgba(0,0,0,0.95));
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 2em;
  }

  .blog-header-info h3 {
    max-width: 80%;
  }

  .blog-header-info a {
    color: var(--white-color);
  }

  .blog-header-info a:hover {
    color: var(--secondary-color);
  }

  .blog-sidebar img {
    border-radius: var(--border-radius-small);
    width: 159px;
    margin-right: 22px;
  }

  .blog-sidebar h3 {
    font-size: 18px;
  }



  /*---------------------------------------
     CONTACT              
  -----------------------------------------*/

  .newsletter-form .form-control,
  .contact-form .form-control {
    box-shadow: none;
    background: var(--project-bg);
    border: 0;
    padding: 1.7em 1.3em;
    margin: 14px 0;
  }

  .newsletter-form button,
  .contact-form #submit-button {
    background: var(--primary-color);
    border-radius: var(--border-radius-large);
    color: var(--white-color);
    cursor: pointer;
    font-size: var(--p-font-size);
    line-height: 0px;
    padding: 1.5em 1.3em;
  }

  .newsletter-form button {
    background: var(--secondary-color);
  }



  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

  .site-footer {
    background: var(--white-color);
    padding: 7em 0 6em 0;
  }

  .site-footer a {
    color: var(--p-color);
  }

  .site-footer a:hover,
  .footer-icon {
    color: var(--secondary-color);
  }

  .footer-link li {
    display: inline-block;
    list-style: none;
    margin: 0 10px;
  }

  .copyright-text,
  .footer-link,
  .site-footer .social-icon {
    margin-top: 6em;
  }

  .copyright-text {
    margin-top: 5.3em;
  }

  .hero-text {
    text-align: left;
  }

  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 4em 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    font-size: var(--base-font-size);
    margin: 10px;
    text-align: center;
  }



  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/


  @media screen and (min-width: 991px) {

    .project h2 {
      max-width: 32%;
      margin: 0 auto;
    }
  }

  @media screen and (max-width: 991px) {

    .hero {
      padding-top: 6em;
    }

    .hero-text {
      bottom: 2em;
      text-align: center;
    }

    .navbar {
      padding: 1em;
    }

    .navbar-collapse {
      text-align: center;
      padding: 2.5em 0;
    }

    .nav-link {
      display: inline-block;
    }

    .navbar-expand-lg .navbar-nav .nav-link.contact {
      margin: 1em 0;
    }

    .copyright-text, 
    .footer-link, 
    .site-footer .social-icon {
      margin-top: 3em;
      padding: 0;
      text-align: left;
    }
  }

  @media screen and (max-width: 767px) {

    h1 {
      font-size: 36px;
    }

    h2 {
      font-size: 28px;
    }

    h3 {
      font-size: 22px;
    }

    .project-info {
      right: 0;
      left: 0;
      margin: 0 auto;
    }

    .footer-link, 
    .site-footer .social-icon {
      margin-top: 1em;
    }

    .copyright-text {
      margin: 2.5em 0 1em 0;
    }

    .footer-link li {
      margin-left: 0;
    }
  }

  .section-passo{
    padding: 100px 0px;
  }

  .about-section{
    padding: 100px 0px;
    background-image: url('../images/bg-mid.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .p-passo{
    margin: 10px 100px;
  }
  
  .card{
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 6px 10px rgba(0,0,0,.04), 0 0 6px rgba(0,0,0,.03);
    transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
    padding: 14px 70px 18px 36px;
    cursor: pointer;
  }
  

  .card:hover{
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
  }

  .card img{
    position: absolute;
    top: 20px;
    right: 15px;
    max-height: 120px;
  }

  .card-1{
    background-image: url('../images/number-1.png');
      background-repeat: no-repeat;
      background-position: right;
      background-size: 80px;
  }

  .card-2{
      background-image: url('../images/number-2.png');
      background-repeat: no-repeat;
      background-position: right;
      background-size: 80px;
  }

  .card-3{
    background-image: url('../images/number-3.png');
        background-repeat: no-repeat;
      background-position: right;
      background-size: 80px;
  }


  .h2-card{
    font-weight: 500;
    padding-bottom: 10px;
    color: #272727;
  }
  .p-card{
    font-size: 16px;
    color: rgb(126, 126, 126);
  }

  .lojas-texto{
    text-align: left;
    margin-left: 50px;
  }

  .img-lojas{
    width: 600px;
  }

  .row-lojas{
    margin-right: -15px;
    margin-left: -15px;
  }

@media only screen and (max-width: 575px) {
  .row-lojas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .lojas-texto{
    text-align: center;
    margin-left: 0px;
  }

  .img-lojas{
    width: 330px;
    margin-top: 60px;
  }

 }

  
.row-bancos{
  margin-right: -15px;
  margin-left: -15px;
  display: flex;
  justify-content: center;
}


@media only screen and (max-width: 986px) {
  .row-bancos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

 }


 .img-bancos{
  width: 130px;
  cursor: pointer;
}

.img-bancos:hover img{
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
  transition: 0.3s;

}

.card2{
  margin-top: 27px;
  margin-bottom: 27px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 6px 10px rgb(0 0 0 / 8%), 0 0 6px rgb(0 0 0 / 5%);
  transition: .3s transform cubic-bezier(.155,1.105,.295,1.12),.3s box-shadow,.3s -webkit-transform cubic-bezier(.155,1.105,.295,1.12);
  padding: 14px 14px 18px 14px;
  cursor: pointer;
  text-align: center;
  height: 187px;
  
}

.card2:hover{
  background: #272727;
  color: #fff;
  transition: 0.1s;
  box-shadow: 0 10px 20px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);
}

.card-title{
    font-size: 15px;
    font-weight: 400;
}

.a-footer{
  font-size: 17px;
  margin-bottom: 5px;
}

.a-footer:hover{
  color: black;
  font-size: 18px;
  transition: 0.25s;
}

.p-footer{
  font-size: 16px;
}
.h2-footer{
  font-weight: 600;
  font-size: 16px;
}

.loja-btn{
  background-color: #272727;
  color: #fff;
  padding: 10px 40px 15px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.loja-btn:hover{
  transform: scale(1.1);
  background-color: #fff;
  color: #272727;
  transition: 0.4s;
}

.text-footer{
  float: right;
  font-size: 15px;
  margin: 10px;
}

.img-footer{
  width: 120px;
  float:left;
  margin: 10px;
}

.row-footer{
  margin-right: -15px;
  margin-left: -15px;
}

.description-footer{
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .text-footer {
    float: none;
  }

  .img-footer{
    float: none;
  }

  .description-footer{
    margin: 0px 10px;
  }

  .row-footer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
 }

.section-footer{
  padding: 4rem 0rem 0.6rem 0rem;
}

@media only screen and (max-width: 767px) {
  .h2-main{
    margin: 0px 15px;
    text-align: center;
  }

  .p-passo{
    margin: 25px;
  }
  
  .card{
    margin-bottom: 20px;
  }

  .card2{
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .img-bancos{
    width: 100%;
  }
}


.text-paginas{
  background-color: #272727;
  color: #ff8500;
  width: 280px;
  border-radius: 30px;
  padding: 0;
  margin: 10px;
  font-weight: 600;
  padding: 0px 0px 5px 0px;
}

.text-paginas2{
  background-color: #272727;
  color: #ff8500;
  width: 480px;
  border-radius: 30px;
  padding: 0;
  margin: 10px;
  font-weight: 600;
  padding: 0px 0px 5px 0px;
}

.btn-dpo{
  background-color: #ff8500;
  color: #272727;
  padding: 10px 40px 15px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
}

.btn-dpo:hover{
  transform: scale(1.1);
  background-color: #272727;
  color: #ff8500;
  transition: 0.4s;
}


.title-loja{
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 24px;
  font-weight: 900;
  position: relative;
  letter-spacing: 2px;
  text-align: left;
}

.p-loja{
  text-align: left;
  width: 90%;
  margin: 20px 0px 35px 0px;
  color: #fff;
}

.row-lojas{
  display: flex;
  justify-content: center;
  align-items: center;
}



.lojas{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
width: 600px;
}

.h2-lojas{
padding-top: 100px;
color: #272727;
padding-bottom: 3px;
margin-bottom: 0px;
}


.icon-loja{
float:left;
font-size:25px;
padding:5px 0;
margin:0 25px 0 0px;
color:#272727;
}

.titulo-lojas{
font-size: 20px;
font-weight: 600;
padding-bottom: 0px;
}

.tel-lojas{
font-weight: 600;
color: #ff6600;
}

.tel-lojas:hover{
color: #272727;
}

@media only screen and (max-width: 600px) {
.lojas {
width: 320px;
}
}

.lojas-texto{
padding: 0;
}

.row-footer{
margin-right: -15px;
margin-left: -15px;
}

@media only screen and (max-width: 766px) {
.lojas-texto {
  text-align: center;
}
.row-lojas{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.row-footer{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
}

.card-lojas {
-moz-box-direction: normal;
-moz-box-orient: vertical;
background-color: #fff;
border-radius: 0.25rem;
display: flex;
flex-direction: column;
position: relative;
margin-bottom:1px;
border:none;
}
.card-header:first-child {
border-radius: 0;
}
.card-header {
background-color: #ff8500;
margin-bottom: 0;
padding: 20px 1.25rem;
border:none;
margin-top: 25px;
text-align: center;

}

.card-header:hover {
background-color: #c03807 ;
transition: 0.4s;

}
.card-header a i{
float:left;
font-size:25px;
padding:5px 0;
margin:0 25px 0 0px;
color:#ffffff;

}
.card-header i{
float:right;        
font-size:30px;
width:1%;
margin-top:8px;
margin-right:10px;
}
.card-header a{
width:97%;
float:left;
color:#ffff;
padding-left: 20px;
}



.card-block {
-moz-box-flex: 1;
flex: 1 1 auto;
padding: 20px;
color:#232323;
box-shadow:inset 0px 4px 5px rgba(0,0,0,0.1);
border-top:1px soild #000;
border-radius:0;
}

.lojas{
  display: block;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 600px;
}

.h2-lojas{
padding-top: 100px;
color: #272727;
padding-bottom: 3px;
margin-bottom: 0px;
}


.icon-loja{
float:left;
font-size:25px;
padding:5px 0;
margin:0 25px 0 0px;
color:#272727;
}

.titulo-lojas{
font-size: 20px;
font-weight: 600;
padding-bottom: 0px;
}

.tel-lojas{
font-weight: 600;
color:#ff8500;
}

.tel-lojas:hover{
color: #272727;
}

.card-vantagens{
    border: 1px solid rgb(255 255 255 / 55%);
    padding: 40px 30px;
    border-radius: 10px;
    cursor: pointer;
    min-height: 420px;
}

.card-vantagens:hover{
   transform: scale(1.05);
   transition: .4s;
}

.user-content p{
    font-size: 17px;
    color: rgb(255 255 255 / 75%);
}

.about-info p{
  margin-bottom: 0.5rem;
}

.loja-flex{
	display: flex;
	justify-content: baseline;
	align-items: center;
	margin: 15px 0px;
}

.loja-flex img{
	width: 35px;
	margin-right: 15px;
}

.loja-flex p{
	margin-bottom: 0;
	font-size: 16px;
  color: #fff;
}

.p-lojas{
  margin-bottom: 35px;
}

.lojas-section{
  background-image: url('../images/bg-main.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0px;
}

.h2-padrao{
    padding: 0;
    font-weight: 600;
    color: #272727;
}

@media only screen and (max-width: 600px) {
.lojas {
  width: 320px;
}
}

.arrow-lojas{
display: flex;
justify-content: center;
}

.margin-lojas{
margin-left:130px;
}

@media only screen and (max-width: 600px) {
.margin-lojas {
  margin-left:0px;
}

.p-loja{
  text-align: center;
  width: 100%;
}

.title-loja{
  text-align: center;
}
}

.whatsapp.btn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 0;
  z-index: 9;
}

.whatsapp.btn img {
  width: 180px;
}