*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    scroll-behavior: smooth;
}
body{
    font-family: 'Open Sans', sans-serif;
}
.contenedor{
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0;
}

/* HEADER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
header::before {
    content: "";
    display: block;
    margin-bottom: 80px;
}
.contenido-header {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contenido-header>img {
    width: 33%;
    animation: ease-in animat 1s;
}
@keyframes animat {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
.left>img  {
    margin: 0 0 100px 40px;
    width: 60%;
}
/* Breakpoints responsive
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 700px){
    /* ... */
    .contenido-header {
        flex-direction: column;
        justify-content: space-evenly;
        height: 820px;
    }
    .left {
        margin: 0 0 0 0;
        width: 60%;
    }
    .left>img  {
        margin: 0 0 0 0;
        width: 100%;
    }
    .contenido-header>img {
        width: 70%;
    }
}
@media screen and (max-width: 500px){
    /* ... */
    .contenido-header {
        height: 550px;
    }
    .left {
        margin: 0 0 0 0;
        width: 60%;
    }
    .left>img  {
        margin: 0 0 0 0;
        width: 100%;
    }
    .contenido-header>img {
        width: 70%;
    }
}

/* NAVBAR
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.navigation {
    content: "";
    display: block;
    /* margin-bottom: 80px; */
}
    nav {
        width: 100%;
        height: 90px;
        background-color: transparent;
        border-bottom: 1px solid transparent;
        box-shadow: 1px 1px 10px 0 rgba(0, 0, 0, .2);
        position: fixed;
        top: 0;
        z-index: 100;
        transition: ease-in-out 0.5s;
    }
    .nav {
        width: 100%;
        height: 88px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav .logo {
        height: 75px;
        margin-left: 66px;
    }
    .nav .logo img {
        height: 70%;
        vertical-align: top;
        margin-top: 10px;
    }
    .enlaces-header {
        font-weight: 700;
        transition: ease-in-out 0.5s;
        margin-right: 40px;
    }
    .enlaces-header .enlaces-nav{
        margin-top: 20px;
    }
    .enlaces-header .enlaces-icon{
        margin-left: 10%;
    }
    .enlaces-header .enlaces-icon a{
        color: black;
        text-decoration: none;
        margin-left: 44px;
    }
    .enlaces-header .enlaces-nav a {
        color: black;
        text-decoration: none;
        margin-left: 20px;
    }
    .enlaces-header .enlaces-nav .active {
        color: #CCA28B;
    }
    .enlaces-header a:hover {
        border-top: 2px solid #4b4539;
        border-bottom: 2px solid #4b4539;
    }
    .hamburguer {
        width: 80px;
        height: 80px;
        display: none;
        text-align: center;
        z-index: 100;
        cursor: pointer;
        transition: color 0.5s ease-in;
    }
    .hamburguer>i {
        font-size: 25px;
        line-height: 80px;
    }

/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
    background: #CCA28C;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding-bottom: 0.1px;
}
/* FOOTER SECCTION #1 */
.contenedor-one {
    width: 90%;
    margin: auto;
    overflow: hidden;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 40px;
}
.contact-us{
    width: 40%;
    color: #ffffff;
}
.brand{
    font-weight: 700;
    font-size: 40px;
}
.brand+p{
    font-weight: 500;
    color: #ffffff
    /* color: #3D302A; */
}
.social-media{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.social-media-icon{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid #4b4539;
    border-radius: 50%;
    text-align: center;
    color: #4b4539;
}
.social-media-icon i{
    font-size: 30px;
    line-height: 60px;
}
.line{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    height: 2px;
    background: #4b4539;
}
.social-media-icon:hover{
    background: #3D302A;
    color:#ffffff;
}
/* FOOTER SECCTION #2 */
.two {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0;
    width: 90%;
    margin: auto;
}
.partFooter {
    width: 30%;
    text-align: left;
}
.partFooter h4 {
    color: #3D302A;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.partFooter a {
    display: block;
    text-decoration: none;
    color: #0b0b0b;
    font-weight: 300;
    transition: color .3s ease-in-out;
    margin-bottom: 10px;
}
.partFooter .left {
    margin-bottom: 30px;
}
.partFooter a:hover {
    color: #ffffff;
}
.partFooter img {
    width: 80%;
}
.sub-footer {
    margin-bottom: 10px;
    font-size: 14px;
    color: #1d273b;
}
.copyright {
    color: #1d273b;
}
/* Breakpoints responsive NAVBAR & FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
    /* NAVIGATION */
    .nav .logo {
        margin: 0 0 0 30px;
    }
    .nav .logo img {
        height: 60%;
        vertical-align: top;
        margin-top: 20px;
    }
    /* Footer */
    .footer-content{
        justify-content: center;
    }
    .social-media{
        width: 80%;
        justify-content: space-evenly;
    }
    .social-media-icon{
        margin-left: 0;
    }
    .contact-us{
        text-align: center;
        width: 80%;
        margin-bottom: 40px;
    }
    footer {
        justify-content: space-evenly;
    }
    .partFooter {
        width: 40%;
        margin-bottom: 40px;
    }
}
@media screen and (max-width:700px) {
    /* NAVIGATION */
    .nav {
        padding: 0 10px;
    }
    .nav .logo {
        margin: 0 0 0 30px;
    }
    .nav .logo img {
        height: 60%;
        vertical-align: top;
        margin-top: 20px;
    }
    .enlaces-header {
        position: fixed;
        background: #667db6;
        /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #667db6, #CCA28C, #CCA28C, #667db6);
        /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #667db6, #CCA28C, #CCA28C, #667db6);
        /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-evenly;
        clip-path: circle(0.0% at 100% 0);
        margin: 0;
    }
    .enlaces-header .enlaces-icon {
        margin: 40px 0 0 0;
    }
    .enlaces-header .enlaces-icon a {
        margin-left: 20px;
        font-size: 2em;
    }
    .enlaces-header .enlaces-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0;
    }
    .enlaces-header .enlaces-nav a {
        margin: 40px 0 0 0;
        font-size: 1.2em;
    }
    .enlaces-header .enlaces-nav .active {
        color: #000000;
    }
    .nav .menudos {
        -webkit-clip-path: circle(150% at 100% 0);
        clip-path: circle(150% at 100% 0);
    }

    .nav .enlaces-header a {
        color: #fff;
    }

    .hamburguer {
        display: block;
    }
    /* Footer */
    .social-media{
        width: 100%;
        justify-content: space-evenly;
    }
    .social-media-icon{
        margin-left: 0;
    }
    .contact-us{
        text-align: center;
        width: 95%;
        margin-bottom: 40px;
    }
    .partFooter {
        width: 95%;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 500px) {
    /* NAVIGATION */
    .nav {
        padding: 0 10px;
    }
    .nav .logo {
        margin: 0 0 0 10px;
    }
    .nav .logo img {
        height: 50%;
        vertical-align: top;
        margin-top: 20px;
    }
}

/* BOTON GO TO UP
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.go-top-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.6rem;
  height: 3.6rem;
  z-index: -1;
}
.go-top-button {
  width: 0rem;
  height: 0rem;
  background: rgba(0,0,0,.5);;
  border: 1px solid #4b4539;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  text-align: center;
}
.go-top-button i {
  position: absolute;
  font-size: 1.7rem;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: #ffffff;
  transition: 0.2s;
}
.go-top-button i:hover {
  color: #000000;
}
.show {
  z-index: 10;
}
.show .go-top-button {
  animation: popup 0.3s ease-in-out;
  width: 3.6rem;
  height: 3.6rem;
  z-index: 11;
}
.show i {
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (max-width: 600px) {
  .go-top-container {
    bottom: 2.5rem;
    right: 1rem;
    width: 2.6rem;
    height: 2.6rem;
  }
  .go-top-button {
    width: 0rem;
    height: 0rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* MAIN
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.main_container {
  width: 90vw;
  overflow: hidden;
  margin: auto;
  position: relative;
}
/* WORKS & BRANDS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.work {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    width: 75vw;
    margin: 200px auto;
}
.work_container {
    overflow: hidden;
    position: relative;
}
.work_container:hover img {
    -webkit-transform:scale(1.2);
    transform:scale(1.2);
}
.work_container > figure {
    margin: 10px;
    padding: 0px;
    position: relative;
    overflow: hidden;
}
.w10 {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
}
.work_container figure img {
    filter: hue-rotate(10);
    padding: 0px;
    /* border: 3px solid #fff; */
    box-shadow: 0px 0px 3px #ccc;
    z-index: -1;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: 0.3s;
}
figcaption {
    background-color: rgba(0,0,0,.5);
    /* background-color: rgba(0,0,0,.5); */
    width: 100%;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    padding: 9px 0px 11px 0px;
    text-transform: uppercase;
    font-size: 1.5vw;
    font-weight: bold;
    position: absolute;
    bottom: 0px;
}
.dark::before {
    color: #5e423f;
}
.line_works {
    width: 100%;
    max-width: 1200px;
    height: 2px;
    margin: auto;
    background: #666666;
    display: block;
    filter: blur(1px);
}
.brands_container {
  width: 90vw;
}
.brands_title h2 {
    font-family: proxima-nova,Proxima-Nova-Fallback,Helvetica,sans-serif;
    text-align: center;
    font-weight: lighter;
    color: #666666;
    margin: 60px 0;
}
.brands {
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap: 10px;
    margin: 50px 100px;
    padding: 10px;
  }
  .brands > figure {
    text-align: center;
    padding: 20px 0;
    font-size: 30px;
    text-align: center;
  }
  .brands > figure img {
    /* filter: hue-rotate(10); */
    padding: 0px;
    border: none;
    box-shadow: none;
    box-sizing: none;
    z-index: 10;
    position: relative;
    width: 100%;
    transition: 0.3s;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
  .brands {
    grid-template-columns: auto auto auto;
    gap: 10px;
    margin: 50px 50px;
  }
}
@media screen and (max-width:600px) {
  .work {
    grid-template-columns: auto auto;
    width: 80vw;
  }
  figcaption {
    font-size: 3vw;
  }
  .brands {
    grid-template-columns: auto auto;
    gap: 10px;
    margin: 50px 50px;
    padding: 0px;
  }
}
@media screen and (max-width: 500px) {
  .work {
    grid-template-columns: auto;
    grid-template-rows: max-content auto;
    gap: 3em;
    margin-bottom: 100px;
    width: 90vw;
  }
}

/* SERVICES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.services {
    background-color: #e5e5f7;
    background-image: radial-gradient(#CCA28C 0.5px, transparent 0.5px), radial-gradient(#CCA28C 0.5px, #cca28ccc 0.5px);
    background-size: 20px 20px;
    overflow: hidden;
    width: 100%;
    margin: 0;
}
.services_container {
    width: 90%;
    margin: 20px auto;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
    align-items: center;
}
.services_texts {
  width: 40vw;
  padding-right: 4em;
}
.services_texts h2 {
  font-size: 2em;
  color: #ffffff;
}
.services_texts ul{
  margin-left: 30px;
}
.services_texts ul li{
  list-style-type: circle;
}
.services_paragraph{
  line-height: 1.7;
  font-size: large;
  text-align: justify;
  margin: 10px auto;
  margin-top: 20px;
}
.services_picture{
  max-width: 500px;
  text-align: center;
  z-index: 10;
  overflow: hidden;
}
.services_picture img {
  width: 40vw;
  display: block;
}
.cta {
  display: inline-block;
  background-color: #2091F9;
  justify-self: center;
  color: #fff;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 32px;
}
.services_white {
  background-color: #ffffff;
  background-image: radial-gradient(#ffffff 0.5px, transparent 0.5px), radial-gradient(#ffffff 0.5px, #ffffffbb 0.5px);
}
.services_white .services_texts {
  padding-left: 4em;
  padding-right: 0;
}
.services_white h2{
  color: #3D302A;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media (max-width:800px) {
  .services_container{
    grid-template-columns: 1fr;
    grid-template-rows: max-content 1fr;
    gap: 1em;
    margin: 30px auto;
  }
  .services_texts {
    width: 90vw;
    padding: 0;
    padding-right: 20px;
  }
  .services_texts h2 {
    font-size: 2em;
    text-align: center;
  }
  .services_picture{
      grid-row: 1/2;
      justify-self: center;
  }
  .services_picture img {
    width: 60vw;
  }
  .services_paragraph{
    font-size: medium;
  }
  .services_white .services_texts {
    padding: 0;
    padding-right: 20px;
  }
}

/* ABOUT
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.about {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 0;
    width: 90%;
    margin-top: 100px;
    margin-left: 100px;
}
.partAbout {
    width: 40%;
    text-align: justify;
    padding-bottom: .9375rem;
}
.partAbout p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 1rem;
    line-height: 1.625;
    color: #666;
}
.partAbout img{
    width: 90%;
}
/* MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width:800px) {
    .about {
        padding: 60px 0;
        width: 90%;
        margin-top: 100px;
        margin-left: 20px;
    }
    .partAbout {
        width: 95%;
        margin-bottom: 40px;
    }
    .partAbout img{
        width: 80%;
        text-align: center;
    }
}

/* WORKS ITEMS PAGES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.works_items {
    background: #ffffff;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 170px auto;
}
.work_item_container {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 60px 0;
    width: 90%;
    margin: auto;
}
.work_item_left {
  width: 60%;
  text-align: center;
  overflow: hidden;
}
.work_item_left img{
  width: 50vw;
  text-align: center;
  padding: 20px;
}
.work_item {
  width: 30%;
}
.work_item h3{
  margin-top: 20vh;
  font-size: large;
  font-weight: bold;
  color: gray;
}
.work_item p{
  margin: 20px auto;
  font-size: medium;
  color: gray;
}
.word_item em{
  font-size: small;
}
/* SLIDER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.work_item_left #loading{
  color: #fff;
  position: relative;
  letter-spacing: 3px;
  width: 70vw;
  line-height: 2em;
  top: calc(50% - 1em) ;
  left: calc(50% - 5em);
  z-index: 2;
  text-align: center;
}
.work_item_left .loading-done{
  display: none;
}
.work_item_left #images{
  position: relative;
  width: 600px;
  left: calc(50% - 300px);
}
.work_item_left .canvas{
  position: relative;
  display:block;
  overflow: hidden;
}
.work_item_left #images img{
  display: none;
  vertical-align: bottom;
}
.work_item_left canvas{
  vertical-align: bottom;
  position: relative;
}
nav .nav_slider ul{
  height: 0;
  margin: 0;
}
nav .nav_slider li {
  position: relative;
  width: 25px;
  height: 25px;
  opacity: .3;
  list-style: none;
  top: calc(50% - 12px);
  z-index: 100;
  transition: opacity .3s;
}
nav .nav_slider li:hover{
  opacity: .7;
}
nav .pre.after-loading{
  left: -40px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
}
nav .next.after-loading{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: -40px;
}

/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease-in;
  }
  .modal.is-visible {
    visibility: visible;
    opacity: 1;
  }
  .modal-dialog {
    position: relative;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 5px;
    background: #ffffff;
    overflow: auto;
    cursor: default;
  }
  .modal-dialog > * {
    padding: 1rem;
  }
  .modal-header,
  .modal-footer {
    background: #efefef;
  }
  .modal-header {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
  }
  .modal-header .close-modal {
    font-size: 1.5rem;
    width: 20px;
    height: 20px;
    margin-left: 30px;
    border-color: transparent;
    background-color: transparent;
  }
  .modal p + p {
    margin-top: 1rem;
  }
/* FORM
–––––––––––––––––––––––––––––––––––––––––––––––––– */
  input{
    background-color: #fbfbfb;
    width: 408px;
    height: 40px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #CCA28C;
    margin-top: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  textarea{
    background-color: #fbfbfb;
    width: 405px;
    height: 150px;
    border-radius: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #CCA28C;
    margin-top: 10px;
    padding-left: 10px;
    margin-bottom: 20px;
    padding-top: 15px;
  }
  label{
    display: block;
    float: center;
  }
  button{
    height: 45px;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 20px;
    margin-top: 10px;
    text-transform: uppercase;
    background-color: #CCA28C;
    border-color: #927464;
    border-style: solid;
    border-radius: 10px;
    width: 420px;
    cursor: pointer;
  }
  button p{
    color: #fff;
  }
  button:hover {
    background-color: #cca28ca4;
  }
  span{
    color: #CCA28C;
  }
  .aviso{
    font-size: 13px;
    color: #0e0e0e;
  }
  h1{
    font-size: 39px;
    text-align: letf;
    padding-bottom: 20px;
    color: #CCA28C;
  }
  h3{
    font-size: 16px;
    padding-bottom: 30px;
    color: #0e0e0e;
  }
  p{
    font-size: 14px;
    color: #0e0e0e;
  }
  ::-webkit-input-placeholder {
   color: #a8a8a8;
  }
  ::-webkit-textarea-placeholder {
   color: #a8a8a8;
  }
  .formulario input:focus{
    outline:0;
    border: 1px solid #97d848;
  }
  .formulario textarea:focus{
    outline:0;
    border: 1px solid #97d848;
  }

  /* ANIMATIONS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  [data-animation] .modal-dialog {
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15);;
  }

  [data-animation].is-visible .modal-dialog {
    opacity: 1;
    transition-delay: 0.2s;
  }

  [data-animation="slideInOutDown"] .modal-dialog {
    transform: translateY(100%);
  }

  [data-animation="slideInOutTop"] .modal-dialog {
    transform: translateY(-100%);
  }

  [data-animation="slideInOutLeft"] .modal-dialog {
    transform: translateX(-100%);
  }

  [data-animation="slideInOutRight"] .modal-dialog {
    transform: translateX(100%);
  }

  [data-animation="zoomInOut"] .modal-dialog {
    transform: scale(0.2);
  }

  [data-animation="rotateInOutDown"] .modal-dialog {
    transform-origin: top left;
    transform: rotate(-1turn);
  }

  [data-animation="mixInAnimations"].is-visible .modal-dialog {
    animation: mixInAnimations 2s 0.2s linear forwards;
  }

  [data-animation="slideInOutDown"].is-visible .modal-dialog,
  [data-animation="slideInOutTop"].is-visible .modal-dialog,
  [data-animation="slideInOutLeft"].is-visible .modal-dialog,
  [data-animation="slideInOutRight"].is-visible .modal-dialog,
  [data-animation="zoomInOut"].is-visible .modal-dialog,
  [data-animation="rotateInOutDown"].is-visible .modal-dialog {
    transform: none;
  }
  @keyframes mixInAnimations {
    0% {
      transform: translateX(-100%);
    }
    10% {
      transform: translateX(0);
    }
    20% {
      transform: rotate(20deg);
    }
    30% {
      transform: rotate(-20deg);
    }
    40% {
      transform: rotate(15deg);
    }
    50% {
      transform: rotate(-15deg);
    }
    60% {
      transform: rotate(10deg);
    }
    70% {
      transform: rotate(-10deg);
    }
    80% {
      transform: rotate(5deg);
    }
    90% {
      transform: rotate(-5deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }