@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('cookies-eu-banner.css');
@import url('header.css');
@import url('main.css');
@import url('popup.css');
@import url('footer.css');
@import url('media.css');

/* Color logo Datterberg #1 : #ba7551 */
/* Color logo Datterberg #2 : #954b36 */
/* Color logo Datterberg #3 : #fecd01 */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-height: 100%;
    max-width: 100%;
    text-decoration:none;
}
body {
    margin: 0;
    padding: 0px;
    font-family: 'Montserrat',Arial,sans-serif!important;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    text-decoration: none;
}
html{
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

/* Style Odoo */
.pt32{
    padding-top: 32px !important;
} 
.pb32{
    padding-bottom: 32px !important;
}
.pt40 {
    padding-top: 40px !important;
}
.pb16 {
    padding-bottom: 16px !important;
}
.o_cc5, .o_footer {
    background-color: #383E45;
    color: #FFFFFF;
}
.o_footer .o_footer_copyright {
    background-color: rgba(0, 0, 0, 0.15);
}
@-webkit-keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100px, 0, 0);
      transform: translate3d(100px, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      -webkit-transform: translate3d(100px, 0, 0);
      transform: translate3d(100px, 0, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes hue-rotate {
    to{
      filter: hue-rotate(20deg);
    }
  }
  
  .fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  }
  
@keyframes slideInLeft{
  from{
    transform: translate(-25%,0);
    opacity: 0
  }

  to{
    transform: translate(0,0);
    opacity: 1;
  }
 }
    
